1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 14:16:41 +07:00

fixed flow timers

This commit is contained in:
Fedor Katurov 2019-10-24 16:08:49 +07:00
parent 81cd45f168
commit fa0d3c9932
3 changed files with 5 additions and 14 deletions

View file

@ -4,15 +4,6 @@ import * as styles from './styles.scss';
type IProps = React.HTMLAttributes<HTMLDivElement>;
export const Filler: FC<IProps> = ({
className = '',
...props
}) => (
<div
className={classNames(
styles.filler,
className,
)}
{...props}
/>
export const Filler: FC<IProps> = ({ className = '', ...props }) => (
<div className={classNames(styles.filler, className)} {...props} />
);