@cgi-learning-hub/ui
Version:
@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features
8 lines (7 loc) • 326 B
TypeScript
import { PaperProps } from '@mui/material/Paper';
import { Meta, StoryObj } from '@storybook/react-vite';
declare const Paper: (props: PaperProps) => import("react/jsx-runtime").JSX.Element;
declare const meta: Meta<typeof Paper>;
export default meta;
type Story = StoryObj<typeof Paper>;
export declare const Default: Story;