diff --git a/src/App.css b/src/App.css deleted file mode 100644 index 74b5e05..0000000 --- a/src/App.css +++ /dev/null @@ -1,38 +0,0 @@ -.App { - text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } -} - -.App-header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.App-link { - color: #61dafb; -} - -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} diff --git a/src/App.tsx b/src/App.tsx deleted file mode 100644 index 94feab5..0000000 --- a/src/App.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react'; -import './App.css'; - -function App() { - return ( -
-
-

- Edit src/App.tsx and save to reload. -

- - Learn React - -
-
- ); -} - -export default App; diff --git a/src/components/App/App.css b/src/components/App/App.css new file mode 100644 index 0000000..4931613 --- /dev/null +++ b/src/components/App/App.css @@ -0,0 +1,3 @@ +.App { + text-align: center; +} diff --git a/src/App.test.tsx b/src/components/App/App.test.tsx similarity index 100% rename from src/App.test.tsx rename to src/components/App/App.test.tsx diff --git a/src/components/App/App.tsx b/src/components/App/App.tsx new file mode 100644 index 0000000..bb03cae --- /dev/null +++ b/src/components/App/App.tsx @@ -0,0 +1,15 @@ +import React from 'react'; + +import Logo from '../Logo/Logo'; + +import './App.css'; + +function App() { + return ( +
+ +
+ ); +} + +export default App; diff --git a/src/components/Board/Board.css b/src/components/Board/Board.css new file mode 100644 index 0000000..e69de29 diff --git a/src/components/Board/Board.tsx b/src/components/Board/Board.tsx new file mode 100644 index 0000000..e69de29 diff --git a/src/components/Logo/Logo.css b/src/components/Logo/Logo.css new file mode 100644 index 0000000..a7f19c4 --- /dev/null +++ b/src/components/Logo/Logo.css @@ -0,0 +1,4 @@ +.Logo { + background: red; + width: 20vw; +} diff --git a/src/components/Logo/Logo.tsx b/src/components/Logo/Logo.tsx new file mode 100644 index 0000000..171b0f6 --- /dev/null +++ b/src/components/Logo/Logo.tsx @@ -0,0 +1,13 @@ +import React from 'react'; + +import '../../styles/Logo.css'; + +function Logo() { + return ( +
+ asdsdasdadsads +
+ ); +} + +export default Logo; diff --git a/src/helpers/localStore.ts b/src/helpers/localStore.ts new file mode 100644 index 0000000..e69de29