This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/resources/scripts/components/Sidebar.tsx
2023-08-04 20:23:14 +02:00

16 lines
335 B
TypeScript

import React, { ReactNode } from 'react';
import '@/assets/css/sidebar.css';
type ParentProps = {
children: ReactNode;
};
export default ({ children }: Omit<ParentProps, 'render'>) => {
return (
<>
<div className='sidebar' id='sidebar'>
{children}
</div>
</>
);
};