Added sidebar id to the id list
This commit is contained in:
parent
860b337b1f
commit
72d086d292
|
@ -8,7 +8,9 @@ type ParentProps = {
|
||||||
export default ({ children }: Omit<ParentProps, 'render'>) => {
|
export default ({ children }: Omit<ParentProps, 'render'>) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className='sidebar'>{children}</div>
|
<div className='sidebar' id='sidebar'>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue