import { FC } from 'react'; import { Row } from 'reactstrap'; import classNames from 'classnames'; import { SimpleCard } from './SimpleCard'; export type ResultType = 'success' | 'error' | 'warning'; export interface ResultProps { type: ResultType; className?: string; small?: boolean; } export const Result: FC = ({ children, type, className, small = false }) => (
{children}
);