Skip to content

Instantly share code, notes, and snippets.

@ryanbelke
Last active October 20, 2018 21:16
Show Gist options
  • Save ryanbelke/a50988f084e59e8368c85465d27d313a to your computer and use it in GitHub Desktop.
Save ryanbelke/a50988f084e59e8368c85465d27d313a to your computer and use it in GitHub Desktop.
/* /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>
&nbsp; <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