Here is the code:
<Grid
container
justify="space-between"
alignItems="flex-start"
direction="column"
xs
spacing={5}
style={{
padding: 10,
}}>
<ParamSelection/>
{
state.selected != -1 && <Grid
container
item
justify="space-between"
alignItems="left"
direction="column"
spacing={5}
style={{width:'350px', marginLeft: '10px'}}>
<DatePickerView/>
}
Inside Param selection again a grid.
<Grid
item
container
justify="flex-start"
alignItems="left"
direction="column"
xs
style={{width: '350px', marginLeft: '10px'}}
>
<Grid item >
<Typography variant="subtitle1" align="left">Select parameter for graph: </Typography>
</Grid>
Currently it's showing like this:
I want select date to be on the same line as select parameter for graph, side by side.