Skip to content

Instantly share code, notes, and snippets.

@code08-ind
Created March 28, 2021 09:59
Show Gist options
  • Save code08-ind/f1c137e01d95efb40d24421173dcf11b to your computer and use it in GitHub Desktop.
Save code08-ind/f1c137e01d95efb40d24421173dcf11b to your computer and use it in GitHub Desktop.
import React from 'react';
import Calculator from './Calculator';
import Navbar from './Navbar';
const App = () => {
return (
<>
<Navbar />
<Calculator />
</>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment