Skip to content

Instantly share code, notes, and snippets.

@m-malkowski
Created March 28, 2019 13:27
Show Gist options
  • Select an option

  • Save m-malkowski/3b4755a7de743af16be59550e1c8cabc to your computer and use it in GitHub Desktop.

Select an option

Save m-malkowski/3b4755a7de743af16be59550e1c8cabc to your computer and use it in GitHub Desktop.
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