UNPKG

@j2inn/app-react

Version:

React implementation of the j2inn-app framework

21 lines (20 loc) 507 B
import { AppProps } from '@j2inn/app'; import React from 'react'; /** * Properties for an application view header. */ export interface AppViewHeaderProps extends AppProps { /** * The content of the header. This will be displayed along with the * header title. */ children?: React.ReactNode; /** * The custom header title */ title?: () => JSX.Element | undefined; /** * CSS class of the header element */ className?: string; }