UNPKG

@jbonigomes/create-react-slides

Version:

React presentation deck framework heavily inspired by Impress.js

15 lines (13 loc) 344 B
import React from 'react' import Img from '../components/Img' import Step from '../components/Step' import Slide from '../components/Slide' export default () => ( <Slide> <Step> <h1>Sample small image</h1> <p>Images can be configured to display in a small size</p> <Img src={'sample'} small /> </Step> </Slide> )