mirror of
https://github.com/kingomarnajjar/innovationdrive.git
synced 2026-07-28 03:43:48 +10:00
25 lines
No EOL
560 B
JavaScript
25 lines
No EOL
560 B
JavaScript
import React, { Component } from "react";
|
|
import "./App.css";
|
|
import HeadNavbar from "./components/Navbar";
|
|
|
|
class App extends Component {
|
|
render() {
|
|
return (
|
|
<div className="App">
|
|
< HeadNavbar />
|
|
|
|
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default App;
|
|
|
|
{/* <header className="App-header">
|
|
<img src={logo} className="App-logo" alt="logo" />
|
|
<h1 className="App-title">BOOBY React</h1>
|
|
</header>
|
|
<p className="App-intro">
|
|
To get started, edit <code>src/App.js</code> and save to reload.
|
|
</p> */} |