@vtex/styleguide
Version:
> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))
10 lines (9 loc) • 311 B
TypeScript
import { PropsWithChildren } from 'react';
import { Column, Items } from '../types';
interface Data {
columns: Column[];
items: Items;
}
export declare function useDataContext(): Data;
export declare function DataProvider({ children, items, columns, }: PropsWithChildren<Data>): JSX.Element;
export {};