@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) • 320 B
TypeScript
import { LinkProps } from '@mui/material/Link';
import { Meta, StoryObj } from '@storybook/react-vite';
declare const Link: (props: LinkProps) => import("react/jsx-runtime").JSX.Element;
declare const meta: Meta<typeof Link>;
export default meta;
type Story = StoryObj<typeof Link>;
export declare const Default: Story;