UNPKG

violet-paginator

Version:

Display, paginate, sort, filter, and update items from the server. violet-paginator is a complete list management library for react/redux applications.

25 lines (22 loc) 537 B
import React, { PropTypes } from 'react' import Recipes from './recipes/Index' export default function App() { return ( <div> <div className="alert"> <center> <h1>VioletPaginator</h1> <a target="_blank" href="https://github.com/sslotsky/violet-paginator" className="btn"> <span className="fa fa-github"> View On Github </span> </a> </center> </div> <Recipes /> </div> ) } App.propTypes = { children: PropTypes.object }