-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new rewrite react version to source
- Loading branch information
1 parent
20abffb
commit 3022e21
Showing
143 changed files
with
18,768 additions
and
18,081 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
/nbproject/private/ | ||
node_modules/ | ||
.vscode | ||
.DS_Store | ||
.meteor/local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')); | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.