Skip to content

Instantly share code, notes, and snippets.

@martinwairegi
Created July 5, 2022 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinwairegi/221a70bfc6585c92759f8231f42970cc to your computer and use it in GitHub Desktop.
Save martinwairegi/221a70bfc6585c92759f8231f42970cc to your computer and use it in GitHub Desktop.
import React from 'react';
import './App.css';
import {StateContextProvider} from '../StateContext'
import Display from '../components/Display';
function App() {
return (
<div className="App">
<StateContextProvider>
<Display />
</StateContextProvider>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment