mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-09-18 06:09:33 +02:00
13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import { FunctionComponent } from "react";
|
|
import styled from "styled-components";
|
|
|
|
type Props = {};
|
|
|
|
const TestComponent: FunctionComponent<Props> = () => {
|
|
return <h1>TestComponent</h1>;
|
|
};
|
|
|
|
const StyledTestComponent = styled(TestComponent)``;
|
|
|
|
export { StyledTestComponent as TestComponent };
|