1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

refactored react imports

This commit is contained in:
Fedor Katurov 2023-11-20 22:35:07 +06:00
parent a9a220273f
commit 7a7b7a4bf9
253 changed files with 679 additions and 479 deletions

View file

@ -1,4 +1,4 @@
import React, { FC } from 'react';
import { FC } from 'react';
import classNames from 'classnames';
@ -11,7 +11,13 @@ interface InputWrapperProps {
notEmpty: boolean;
}
const InputWrapper: FC<InputWrapperProps> = ({ children, notEmpty, title, focused, error }) => (
const InputWrapper: FC<InputWrapperProps> = ({
children,
notEmpty,
title,
focused,
error,
}) => (
<div
className={classNames(styles.content, {
[styles.has_error]: !!error,