chore(packages): move the packages to root

This commit is contained in:
Brandy Carney
2018-03-12 16:02:25 -04:00
parent 097f1a2cd3
commit d37623a2ca
1255 changed files with 38 additions and 38 deletions

22
demos/react/src/App.js Normal file
View File

@ -0,0 +1,22 @@
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import PageOne from './pages/PageOne';
import { Delegate, wc } from '@ionic/react';
class App extends Component {
render() {
return (
<ion-app>
<ion-nav ref={wc({},{
root: PageOne,
delegate: Delegate
})}></ion-nav>
</ion-app>
);
}
}
export default App;