UNPKG

mscodepl-react-sidebar

Version:

compitable with react js and next js.

10 lines (9 loc) 309 B
import React from 'react'; interface iLeftOffCanvas { show: boolean; title: string; setShow: React.Dispatch<React.SetStateAction<boolean>>; children: React.ReactNode; } export default function LeftOffCanvas({ show, title, setShow, children }: iLeftOffCanvas): JSX.Element; export {};