diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/App.js | 10 | ||||
-rw-r--r-- | src/components/Header.js | 13 |
2 files changed, 23 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 diff --git a/src/components/Header.js b/src/components/Header.js new file mode 100644 index 0000000..ecc2b42 --- /dev/null +++ b/src/components/Header.js @@ -0,0 +1,13 @@ +import React from "react"; +// import React, { useState } from "react"; + +const App = () => { + // const [activeLink, updateActiveLink] = useState("home") + return ( + <div> + + </div> + ) +} + +export default App |