Added sidebar id to the id list

This commit is contained in:
Angelillo15 2023-08-04 20:23:14 +02:00
parent 860b337b1f
commit 72d086d292
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,9 @@ type ParentProps = {
export default ({ children }: Omit<ParentProps, 'render'>) => {
return (
<>
<div className='sidebar'>{children}</div>
<div className='sidebar' id='sidebar'>
{children}
</div>
</>
);
};