Skip to content

Commit

Permalink
Added new rewrite react version to source
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonnathan committed Sep 7, 2016
1 parent 20abffb commit 3022e21
Show file tree
Hide file tree
Showing 143 changed files with 18,768 additions and 18,081 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/nbproject/private/
node_modules/
.vscode
.DS_Store
.meteor/local
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bellafeedtimer
==============
# Onsen UI + Meteor

A simple HTML, JS, CSS baby feeding timer
This is a simple example of React Onsen UI working with Meteor out of the box. This app is based on the official [React-Meteor Todo app](https://www.meteor.com/tutorials/react/creating-an-app) tutorial.

Check this app working here: https://onsenui-meteor-todos.herokuapp.com/
8 changes: 8 additions & 0 deletions client/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<head>
<title>Todo List</title>
</head>

<body>
<div id="render-target"></div>
</body>

17 changes: 17 additions & 0 deletions client/main.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react';
import { Meteor } from 'meteor/meteor';
import { render } from 'react-dom';

import ons from 'onsenui';
// import '../imports/ui/styles/dark-theme.styl';
import 'onsenui/css/onsenui.css';
import 'onsenui/css/onsen-css-components-dark-theme.css';
// import 'onsenui/stylus/blue-theme.styl';
import '../imports/ui/styles/Main.styl';
import App from '../imports/ui/App.jsx';

Meteor.startup(() => {
ons.ready(() => {
render(<App />, document.getElementById('render-target'));
});
});
23 changes: 0 additions & 23 deletions config.xml

This file was deleted.

24 changes: 0 additions & 24 deletions css/all.css

This file was deleted.

24 changes: 0 additions & 24 deletions css/font-awesome.min.css

This file was deleted.

Binary file removed css/fontawesome-webfont.eot
Binary file not shown.
339 changes: 0 additions & 339 deletions css/fontawesome-webfont.svg

This file was deleted.

Binary file removed css/fontawesome-webfont.ttf
Binary file not shown.
Binary file removed css/fontawesome-webfont.woff
Binary file not shown.
1 change: 0 additions & 1 deletion css/foundation.min.css

This file was deleted.

Binary file removed css/opensans-regular-webfont.ttf
Binary file not shown.
Loading

0 comments on commit 3022e21

Please sign in to comment.