Hi,
iv been working with the sidebar component and suddenly it wont work correctly and become
horizontal ,and stops right after the content inside of it and ignoring from postion="Right"
this is my code and what it shows

import {SidebarComponent} from '@syncfusion/ej2-react-navigations';
import {CheckBoxComponent} from '@syncfusion/ej2-react-buttons'
function SlideBar({ props = [] })
{
.... some functions
return(
<div>
<SidebarComponent style={{background: "#E5E5E5"}} position="Right" type="Over" >
{chackbox.visbal ? props.map((info) => (
<div key={info.Field}>
<CheckBoxComponent
id ={info.key}
key = {"key"}
label={info.Field}
checked={false}
onChange = {Handlechakcbox}
/>
div>
)):null}
{data.visbal && data.key ? <FromProp prop={props} id={data.key}/>
: null
}
{data.visbal ?
<div>
<button onClick = {Handleback}> Backbutton>
div>
: null}
SidebarComponent>
div>
)
}