import { FC } from 'react'; import { withFlattenParameters } from '@/utils/withFlattenParameters'; import { ComponentEmptyPlaceholderParameters, ComponentEmptyPlaceholderProps } from '.'; export const ComponentEmptyPlaceholder: FC< ComponentEmptyPlaceholderProps & ComponentEmptyPlaceholderParameters > = () => (

Component not found

); export default withFlattenParameters(ComponentEmptyPlaceholder);