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