Skip to content

Commit

Permalink
Merge pull request jasminmif#25 from jasminmif/functional-components
Browse files Browse the repository at this point in the history
Convert project to use functional components and hooks
  • Loading branch information
jasminmif authored Apr 26, 2020
2 parents abd1def + 9c2f337 commit e1ebc64
Show file tree
Hide file tree
Showing 6 changed files with 454 additions and 558 deletions.
6 changes: 1 addition & 5 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ import './App.scss';
import MainScreen from './screens/MainScreen';

function App() {
return (
<div className="App">
<MainScreen />
</div>
);
return <MainScreen />;
}

export default App;
Loading

0 comments on commit e1ebc64

Please sign in to comment.