Skip to content

Instantly share code, notes, and snippets.

@kkemple
Created February 1, 2019 13:40
Show Gist options
  • Save kkemple/18ed7200bb373c0aa9f36621debd3974 to your computer and use it in GitHub Desktop.
Save kkemple/18ed7200bb373c0aa9f36621debd3974 to your computer and use it in GitHub Desktop.
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