Advertisement
Guest User

src/pages/goal.js

a guest
Dec 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import React from 'react'
  2. import Layout from 'src/components/Layout'
  3. import GoalPage from 'src/components/GoalPage'
  4.  
  5. const Goal = () => (
  6. <Layout disabledFooter={true}>
  7. <GoalPage />
  8. </Layout>
  9. )
  10.  
  11. export default Goal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement