Created
September 1, 2019 21:52
-
-
Save ryanpedersen42/a1ce77d2368d1f7b3d72a896f8b4e293 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // src/pages/main-page/main-page.jsx | |
| import React, { Fragment } from 'react'; | |
| import './main-page.styles.scss'; | |
| const MainPage = () => ( | |
| <Fragment> | |
| <div className='main-page'> | |
| <p>Made it!</p> | |
| </div> | |
| </Fragment> | |
| ); | |
| export default MainPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment