UNPKG
slidedeck
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
An easy to use React-based slide show library
slidedeck
/
dist
/
components
/
slide
/
Slide.d.ts
10 lines
(9 loc)
•
297 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
declare
type
Props
= {
title
?:
string
;
subtext
?:
React
.
Component
|
string
;
children
:
React
.
Component
|
string
;
animate
?:
boolean
; };
declare
const
_default
:
(
{ title, subtext, children, animate }:
Props
) =>
JSX
.
Element
;
export
default
_default;