Added styled components

- also removed existing css
  - left the capabilities included
This commit is contained in:
2022-08-08 14:08:16 +02:00
parent e733c4a9f6
commit 4b61b4a370
9 changed files with 382 additions and 504 deletions

View File

@@ -0,0 +1,12 @@
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 };