Last active
October 20, 2018 21:16
-
-
Save ryanbelke/a50988f084e59e8368c85465d27d313a 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"; | |
import Layout from "../components/Layout"; | |
export default () => { | |
return ( | |
<Layout> | |
<div> | |
<Alert color="primary"> | |
Hello Project is strapi-next with Bootstrap | |
</Alert> | |
<Button color="primary">Hello from nextjs</Button> | |
</div> | |
</Layout> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment