UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

9 lines (8 loc) 260 B
import React, { ReactNode } from 'react'; import { ScreenConfig } from '../types'; export interface MainProps { config: ScreenConfig; content: ReactNode; } declare const Main: ({ config, content }: MainProps) => React.JSX.Element; export default Main;