import { FC } from 'react';

interface InputContainerProps {
  label: string
}

const InputContainer:FC<InputContainerProps> = ({label, children}) => {
  return (
    <div style={{ display: 'flex', marginBottom: 10 }}>
      <b style={{ marginRight: 10 }}>{label}: </b>
      {
        children
      }
    </div>
  )
}

export default InputContainer;
