import { FunctionComponent } from "react"; import styled from "styled-components"; type Props = {}; const TestComponent: FunctionComponent = () => { return

TestComponent

; }; const StyledTestComponent = styled(TestComponent)``; export { StyledTestComponent as TestComponent };