@waweb/microbase.context.app
Version:
13 lines (12 loc) • 326 B
TypeScript
import { ReactNode } from 'react';
export declare type AppProviderProps = {
/**
* primary color of theme.
*/
color?: string;
/**
* children to be rendered within this theme.
*/
children: ReactNode;
};
export declare function AppProvider({ color, children }: AppProviderProps): JSX.Element;