import { SimpleCard } from '@shlinkio/shlink-frontend-kit/tailwind'; import type { FC, PropsWithChildren } from 'react'; export type ErrorLayoutProps = PropsWithChildren<{ title: string; }>; export const ErrorLayout: FC = ({ children, title }) => (

{title}

{children}
);