import React, { useState, useEffect } from 'react'; import { Column, ConditionalRowStyle, Filter, FilterGroup } from '../components/data-display/SearchUI/types'; /** * Because Storybook can only auto-generate ArgTables for components (not types or interfaces), * any type or interface that we want to document somewhere inside another story should be added * to this page as the prop type for a dummy component. * * This allows us to generate ArgTables for types or interfaces using the following syntax: * */ export const ColumnInterface: React.FC = (props) => { return <>; }; export const FilterGroupInterface: React.FC = (props) => { return <>; }; export const FilterInterface: React.FC = (props) => { return <>; }; export const ConditionalRowStyleInterface: React.FC = (props) => { return <>; };