From 71a19efd9a26f3e5c8c500a3449e196463a79ef9 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Fri, 27 Oct 2023 20:54:50 +0300 Subject: [PATCH] Improve appearance of info fields --- frontend/src/Components/Form/InfoInput.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/frontend/src/Components/Form/InfoInput.js b/frontend/src/Components/Form/InfoInput.js index eb3e9dee3..d26a519a4 100644 --- a/frontend/src/Components/Form/InfoInput.js +++ b/frontend/src/Components/Form/InfoInput.js @@ -1,5 +1,7 @@ import PropTypes from 'prop-types'; import React, { Component } from 'react'; +import Alert from 'Components/Alert'; +import { kinds } from 'Helpers/Props'; class InfoInput extends Component { @@ -7,12 +9,12 @@ class InfoInput extends Component { // Render render() { - const { - value - } = this.props; + const { value } = this.props; return ( - + + + ); } }