diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..40841fa --- /dev/null +++ b/public/index.html @@ -0,0 +1,10 @@ + + + + + Hello world + + +
+ + \ No newline at end of file diff --git a/src/App.jsx b/src/App.jsx new file mode 100644 index 0000000..d89aae9 --- /dev/null +++ b/src/App.jsx @@ -0,0 +1,9 @@ +import React from 'react' + +const App = () => { + return ( +
App
+ ) +} + +export default App \ No newline at end of file diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..e3c32fb --- /dev/null +++ b/src/index.css @@ -0,0 +1,4 @@ +body { + background: black; + color: white; +} \ No newline at end of file diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..bd8d222 --- /dev/null +++ b/src/index.js @@ -0,0 +1,5 @@ +import ReactDOM from 'react-dom' +import App from './App' +import "./index.css" + +ReactDOM.render(, document.querySelector("#root")) \ No newline at end of file