Created
October 10, 2018 03:17
-
-
Save ryanbelke/0c14ca8b247d962e485d82b042c38828 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
| /* pages/index.js */ | |
| import { Button, Alert } from "reactstrap"; | |
| export default () => { | |
| return ( | |
| <div> | |
| <div> | |
| <Alert color="primary"> | |
| Hello Project is strapi-next with Bootstrap | |
| </Alert> | |
| <Button color="primary">Hello from nextjs</Button> | |
| </div> | |
| </div> | |
| ); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment