- Implement column pinning functionality allowing users to pin columns to the left or right. - Introduce data grouping capabilities for better data organization. - Enhance the theming guide with new styles for pinned columns and loading indicators. - Add infinite scroll support with loading indicators for improved user experience. - Update CSS styles to accommodate new features and improve visual feedback.
14 lines
295 B
TypeScript
14 lines
295 B
TypeScript
import type { StorybookConfig } from '@storybook/react-vite';
|
|
|
|
const config: StorybookConfig = {
|
|
addons: [],
|
|
framework: {
|
|
name: '@storybook/react-vite',
|
|
options: {
|
|
strictMode: true,
|
|
},
|
|
},
|
|
stories: ['../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
|
|
};
|
|
export default config;
|