0.0.4 • Published 9 years ago

react-presentation v0.0.4

Weekly downloads
4
License
ISC
Repository
github
Last release
9 years ago

React presentation

This is a presentation engine built with React.js, which allows to use the power of React components to get a concise, but powerful API for creating presentations.

Installation

npm install react-presentation --save

Usage

var Presentation = require('./react-presentation/Presentation.jsx')
var Slide = require('./react-presentation/Slide.jsx');
var React = require('react');

React.render(
  <Presentation>
    <Slide>
      <h1>React Presentation</h1>
      <p>This is a react presention</p>
    </Slide>
    <Slide>
      <h1>Slide with a list</h1>
      <ul>
        <li>You </li>
        <li>Can</li>
        <li>Have</li>
        <li>A</li>
        <li>List</li>
        <li>Of</li>
        <li>Items</li>
      </ul>
    </Slide>
  </Presentation>
  ,document.body);
0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

1.0.0

9 years ago