UNPKG

@azure-utils/storybooks

Version:

Utils to upload and manage Storybooks via Azure Functions and storage.

8 lines (7 loc) 287 B
import { ProjectType } from "../models/projects"; export interface ProjectsTableProps { caption?: JSX.Element; toolbar?: JSX.Element; projects: Array<ProjectType>; } export declare function ProjectsTable({ caption, toolbar, projects, }: ProjectsTableProps): Promise<string>;