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
/
Slide5.js
16 lines
(14 loc)
•
322 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
React
from
'react'
import
Highlight
from
'../components/Highlight'
export
default
() => (
<>
<
h1
>
Code highlighting
</
h1
>
<
p
>
Code can be highlighted
</
p
>
<
Highlight
language
=
"javascript"
>
{` // sample JavaScript code console.log('a message here') `}
</
Highlight
>
</>
)