aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/main.js
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-04-29 17:41:06 +0300
committerGitHub <noreply@github.com>2023-04-29 17:41:06 +0300
commitc77681af9dd2522364aa6ae93334bffbecaaed9a (patch)
treed07df16a0b5f0c85e92449e32e8efad1d17d4952 /frontend/src/components/main.js
parentdoc: update history model (#38) (diff)
parentui update (diff)
downloadlphub-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.js16
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 @@
1import React from 'react';
2
3import "../App.css"
4import "./main.css";
5
6export default function Main(props) {
7
8
9return (
10 <main>
11 <h1>{props.text}</h1>
12 </main>
13 )
14}
15
16