CollectionView
Ce contenu n’est pas encore disponible dans votre langue.
import { CollectionView } from "@rebasepro/ui";This component takes no documented props, or its type could not be flattened. See the source.
Example
Section titled “Example”This is the example the design-system sync renders and verifies for this component.
import { CollectionView } from "@rebasepro/ui";import type { CollectionPropertyConfig, CollectionDataController } from "@rebasepro/ui";
export function TableMode() { return ( <div style={{ height: 460 }} className="w-full"> <CollectionView<SampleProject> dataController={dataController} properties={properties} idProperty="id" titleProperty="name" defaultViewMode="table" enabledViews={["list", "table", "cards", "kanban"]} /> </div> );}