diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-03-26 21:38:05 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-03-26 21:38:05 +0530 |
commit | b34cdba24fe2c2b445adcb3cf7c3e65e79ff6fd0 (patch) | |
tree | 375b33f364354a9939098d61508c9a1c4589ec81 /src/components/App.js | |
parent | a0b22d6aa60baa24225214667bc9171f83484f25 (diff) |
first commit, doesn't do anything yet
Diffstat (limited to 'src/components/App.js')
-rw-r--r-- | src/components/App.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/App.js b/src/components/App.js new file mode 100644 index 0000000..666667b --- /dev/null +++ b/src/components/App.js @@ -0,0 +1,10 @@ +import React from "react"; + +const App = () => { + const txt = "sldjflksjdfljsd"; + return ( + <p>{txt}</p> + ) +} + +export default App |