mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:21:24 +08:00
16 lines
497 B
JavaScript
16 lines
497 B
JavaScript
/* eslint-disable react/prop-types */
|
|
import React from 'react';
|
|
import 'nextra-theme-docs/style.css';
|
|
import { ExternalDocs } from '@storybook/addon-docs';
|
|
|
|
import * as reactAnnotations from '@storybook/react/preview';
|
|
import * as previewAnnotations from '../.storybook/preview';
|
|
|
|
export default function Nextra({ Component, pageProps }) {
|
|
return (
|
|
<ExternalDocs projectAnnotationsList={[reactAnnotations, previewAnnotations]}>
|
|
<Component {...pageProps} />
|
|
</ExternalDocs>
|
|
);
|
|
}
|