Created
February 1, 2019 13:40
-
-
Save kkemple/18ed7200bb373c0aa9f36621debd3974 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
import React from 'react' | |
import { withAuthenticator } from 'aws-amplify-react' | |
import Layout from '../components/Layout' | |
const Dashboard = props => ( | |
<Layout {...props} title="Gatsby Starter Blog" isDashboard> | |
<h1>Liked Posts</h1> | |
</Layout> | |
) | |
export default withAuthenticator(Dashboard, true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment