Files
react-starter-kit/src/infrastructure/navbar/TestComponent.tsx
Mastermindzh 4b61b4a370 Added styled components
- also removed existing css
  - left the capabilities included
2022-08-08 14:08:16 +02:00

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 };