fbredius/storybook

View on GitHub
lib/components/src/controls/index.tsx

Summary

Maintainability
A
1 hr
Test Coverage
import React, { ComponentProps, lazy, Suspense } from 'react';
import type { ColorControlProps } from './Color';

export * from './types';

export * from './Boolean';

export type ColorProps = ColorControlProps;

const LazyColorControl = lazy(() => import('./Color'));

export const ColorControl = (props: ComponentProps<typeof LazyColorControl>) => (
  <Suspense fallback={<div />}>
    <LazyColorControl {...props} />
  </Suspense>
);

export * from './Date';
export * from './Number';
export * from './options';
export * from './Object';
export * from './Range';
export * from './Text';
export * from './Files';