UNPKG

@atooni/gatsby-theme-ziodoc

Version:

A Gatsby theme for ZIO micro sites

14 lines (11 loc) 306 B
import * as React from "react" import * as Prism from "prismjs" import "./src/styles/tailwind.css" import "prism-themes/themes/prism-material-dark.css" import Root from "./src/components/root" Prism.manual = true export const wrapRootElement = ({element}) => { return( <Root>{element}</Root> ) }