index.js 208 B

12345678910111213
  1. import * as React from 'react';
  2. import About from '../containers/About';
  3. const Home = () => (
  4. <About />
  5. );
  6. Home.getInitialProps = async () => ({
  7. namespacesRequired: ['home'],
  8. });
  9. export default Home;