UNPKG

youbetter-desktop-app

Version:
19 lines (16 loc) 384 B
import React from 'react'; import PouchDB from 'pouchdb'; const docs = new PouchDB('activity'); const Activity = React.createClass({ getInitialState: function () { return { }; }, render: function () { return ( <div className="container"> <h2>Your Activity</h2> </div> ); } }); export default Activity;