I have to add space between two input fields without using  
. I have tried to also add {' '}
but that made no difference
This is how they are rendered:
return (
<div className="side-by-side">
<Input
style={{ marginRight: 100 }}
classname="flex w-49"
label="first name"
type="text"
placeholder="Enter first name..."
inputId="basicInput"
value={obj.firstName}
></Input>
{' '}
<Input
classname="flex w-49"
label="last name"
type="text"
placeholder="Enter last name..."
inputId="basicInput"
value={obj.lastName}
></Input>
</div>
And this is the css I'm using to get them in the same line
.side-by-side {
display: flex;
flex-direction: row;
align-items: center;
margin-left: 4px; //also tried to add a margin but that didn't work
}