UNPKG

@sanity/tsdoc

Version:

Generate API reference docs from TypeScript projects and store in a Sanity-friendly JSON format. Render a static frontend, or as React components.

15 lines (13 loc) 263 B
import {defineScope} from '@sanity/ui-workshop' import {lazy} from 'react' export default defineScope({ name: 'members', title: 'Members', stories: [ { name: 'all', title: 'All', component: lazy(() => import('./all')), }, ], })