diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 00:08:53 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 00:08:53 +0300 |
| commit | a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98 (patch) | |
| tree | edf8630e9d6426124dd49854af0cb703ebc5b710 /frontend/src/components/main.js | |
| parent | fix: revert to static homepage (#195) (diff) | |
| download | lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.tar.gz lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.tar.bz2 lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.zip | |
refactor: port to typescript
Diffstat (limited to 'frontend/src/components/main.js')
| -rw-r--r-- | frontend/src/components/main.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/frontend/src/components/main.js b/frontend/src/components/main.js deleted file mode 100644 index b359105..0000000 --- a/frontend/src/components/main.js +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | import React from 'react'; | ||
| 2 | |||
| 3 | import "../App.css" | ||
| 4 | import "./main.css"; | ||
| 5 | import { Link } from 'react-router-dom'; | ||
| 6 | |||
| 7 | export default function Main(props) { | ||
| 8 | |||
| 9 | |||
| 10 | return ( | ||
| 11 | <main> | ||
| 12 | <h1>{props.text}</h1> | ||
| 13 | </main> | ||
| 14 | ) | ||
| 15 | } | ||
| 16 | |||
| 17 | |||