mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-12 11:36:32 -04:00
13 lines
366 B
JavaScript
13 lines
366 B
JavaScript
import 'nextra-theme-docs/style.css';
|
|
import './style.css';
|
|
import Prism from 'prism-react-renderer/prism';
|
|
|
|
(typeof global !== 'undefined' ? global : window).Prism = Prism;
|
|
|
|
require('prismjs/components/prism-typescript');
|
|
require('prismjs/components/prism-rust');
|
|
|
|
export default function Nextra({ Component, pageProps }) {
|
|
return <Component {...pageProps} />;
|
|
}
|