init
This commit is contained in:
7
src/App.js
Normal file
7
src/App.js
Normal file
@@ -0,0 +1,7 @@
|
||||
import React from "react";
|
||||
|
||||
const App = () => {
|
||||
return <h1>Welcome to My React Project</h1>;
|
||||
};
|
||||
|
||||
export default App;
|
||||
5
src/index.js
Normal file
5
src/index.js
Normal file
@@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom";
|
||||
import App from "./App";
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById("root"));
|
||||
Reference in New Issue
Block a user