UNPKG
mscodepl-react-sidebar
Version:
latest (4.14.0)
4.14.0
4.13.0
4.12.7
4.12.6
4.12.5
4.12.4
4.12.3
4.12.2
4.12.1
4.12.0
compitable with react js and next js.
mscodepl/react-sidebar
mscodepl-react-sidebar
/
dist
/
sidebar
/
LeftOffCanvas.d.ts
10 lines
(9 loc)
•
309 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
{};