diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-25 16:16:32 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-25 16:16:32 +0530 |
commit | ecff3ce21dc1fb68cbe62533a1798bc7b4c061ba (patch) | |
tree | 5a99ea7e2b69f6dd59275599db10df3cecce03b1 /src/App.js |
Initialize project using Create React App
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js new file mode 100644 index 0000000..3784575 --- /dev/null +++ b/src/App.js @@ -0,0 +1,25 @@ +import logo from './logo.svg'; +import './App.css'; + +function App() { + return ( + <div className="App"> + <header className="App-header"> + <img src={logo} className="App-logo" alt="logo" /> + <p> + Edit <code>src/App.js</code> and save to reload. + </p> + <a + className="App-link" + href="https://reactjs.org" + target="_blank" + rel="noopener noreferrer" + > + Learn React + </a> + </header> + </div> + ); +} + +export default App; |