@worktif/purei
Version:
Work TIF Material UI Theme Provider and Customization Suite for React applications with dark mode support and dynamic color schemes
12 lines (11 loc) • 581 B
TypeScript
import * as React from 'react';
/**
* Function component representing a base-layout for displaying work-related content in a web application.
* This base-layout includes a navigation bar, search field, category tabs, and cards for displaying content.
* @param {Object} props - The props for the WorkTifLayout component.
* @param {any} props.children - The children elements to be rendered within the base-layout.
* @returns {JSX.Element} A React functional component representing the work base-layout.
*/
export declare const WorkTifLayout: React.FC<{
children: any;
}>;