UNPKG
@jbonigomes/react-impress-like-slides
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
React presentation deck framework heavily inspired by Impress.js
@jbonigomes/react-impress-like-slides
/
src
/
slides
/
Slide1.js
12 lines
(10 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
export
default
() => (
<>
<
h1
>
Welcome
</
h1
>
<
p
>
You can navigate using the space bar, right and left arrows
</
p
>
<
p
>
<
em
>
←
</
em
>
<
em
>
␣
</
em
>
<
em
>
→
</
em
>
</
p
>
</>
)