Skip to content

Instantly share code, notes, and snippets.

@SahanAmarsha
Created January 23, 2022 11:48
Show Gist options
  • Save SahanAmarsha/955a98a6e9fc12693ec1d9022533457a to your computer and use it in GitHub Desktop.
Save SahanAmarsha/955a98a6e9fc12693ec1d9022533457a to your computer and use it in GitHub Desktop.
App.js file after importing Navbar component
import logo from './logo.svg';
import './App.css';
import {NavBar} from "./ui-components";
function App() {
return (
<div className="App">
<NavBar/>
<header className="App-header">
<h1>Car Rental App</h1>
</header>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment