Skip to content

Instantly share code, notes, and snippets.

@henev
Created December 8, 2019 14:04
Show Gist options
  • Save henev/a1c2ad3667ae74402a4339bf90a2e796 to your computer and use it in GitHub Desktop.
Save henev/a1c2ad3667ae74402a4339bf90a2e796 to your computer and use it in GitHub Desktop.
[React Router Layouts] Components for the routes
import React from 'react';
const One = () => <h1>Content of page one</h1>;
const Two = () => <h1>Content of page two</h1>;
const Three = () => <h1>Content of page three</h1>;
const Four = () => <h1>Content of page four</h1>;
export { One, Two, Three, Four };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment