8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
|
import React from 'react';
|
||
|
interface SidebarProps {
|
||
|
isOpen: boolean;
|
||
|
toggleSidebar: () => void;
|
||
|
}
|
||
|
declare const Sidebar: React.FC<SidebarProps>;
|
||
|
export default Sidebar;
|