Created
March 28, 2019 13:02
-
-
Save m-malkowski/aed8cd1882548060890a337ff1763741 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 SkillsMDX from './skills.mdx' | |
| import * as React from 'react' | |
| import { Route } from 'react-router' | |
| import { useUIComponents, MDXThemeProvider } from '@create-react-resume/core' | |
| const SkillsRoute: React.FC = () => { | |
| const { SkillsPage } = useUIComponents() | |
| return ( | |
| <Route | |
| path="/skills" | |
| component={() => ( | |
| <SkillsPage> | |
| <MDXThemeProvider> | |
| <SkillsMDX /> | |
| </MDXThemeProvider> | |
| </SkillsPage> | |
| )} | |
| /> | |
| ) | |
| } | |
| export default SkillsRoute |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment