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
/
Slide2.js
11 lines
(9 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
import
Img
from
'../components/Img'
export
default
() => (
<>
<
h1
>
Sample small image
</
h1
>
<
p
>
Images can be configured to display in a small size
</
p
>
<
Img
src
=
{
'
sample
'}
small
/>
</>
)