mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
13 lines
205 B
TypeScript
13 lines
205 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}
|
||
|
|
|
||
|
|
const Sidebar = ({ children }: Props) => (
|
||
|
|
<div className="sidebar">
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default Sidebar;
|