diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-04-29 17:41:06 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-29 17:41:06 +0300 |
| commit | c77681af9dd2522364aa6ae93334bffbecaaed9a (patch) | |
| tree | d07df16a0b5f0c85e92449e32e8efad1d17d4952 /frontend/src/components/main.js | |
| parent | doc: update history model (#38) (diff) | |
| parent | ui update (diff) | |
| download | lphub-c77681af9dd2522364aa6ae93334bffbecaaed9a.tar.gz lphub-c77681af9dd2522364aa6ae93334bffbecaaed9a.tar.bz2 lphub-c77681af9dd2522364aa6ae93334bffbecaaed9a.zip | |
Merge pull request #39 from Nidboj132/main
ui update
Diffstat (limited to '')
| -rw-r--r-- | frontend/src/components/main.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/src/components/main.js b/frontend/src/components/main.js new file mode 100644 index 0000000..18b0f5a --- /dev/null +++ b/frontend/src/components/main.js | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | import React from 'react'; | ||
| 2 | |||
| 3 | import "../App.css" | ||
| 4 | import "./main.css"; | ||
| 5 | |||
| 6 | export default function Main(props) { | ||
| 7 | |||
| 8 | |||
| 9 | return ( | ||
| 10 | <main> | ||
| 11 | <h1>{props.text}</h1> | ||
| 12 | </main> | ||
| 13 | ) | ||
| 14 | } | ||
| 15 | |||
| 16 | |||