import { ILazyableProps } from '@websolutespa/bom-mixer-models'; import { Container, Section, Text } from '../../components'; export type NotFoundItem = { title?: string; }; export const NotFound = ({ item }: ILazyableProps) => { return (
not found {item.schema} {item.title && {item.title}} {JSON.stringify(item, null, 2)}
); };