Created
March 28, 2019 13:27
-
-
Save m-malkowski/3b4755a7de743af16be59550e1c8cabc 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
| export default { | |
| layouts: { | |
| Navigation: Navbar, | |
| HomePage: HomePage, | |
| SkillsPage: SectionsPage, | |
| RolesPage: SectionsPage, | |
| Education: SectionsPage, | |
| }, | |
| elements: { | |
| p: (props: any) => <Paragraph {...props} />, | |
| h1: (props: any) => <H1 {...props} />, | |
| h2: (props: any) => <H2 {...props} />, | |
| h3: (props: any) => <H3 {...props} />, | |
| h4: (props: any) => <H4 {...props} />, | |
| h5: (props: any) => <H5 {...props} />, | |
| h6: (props: any) => <H6 {...props} />, | |
| a: (props: any) => <Link {...props} />, | |
| blockquote: (props: any) => <Blockquote {...props} />, | |
| hr: (props: any) => <Hr {...props} />, | |
| inlineCode: (props: any) => <InlineCode {...props} />, | |
| ol: (props: any) => <OrderedList {...props} />, | |
| ul: (props: any) => <UnorderedList {...props} />, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment