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

View File

@ -0,0 +1,10 @@
import { Component } from '@stencil/core';
@Component({
tag: 'ion-buttons',
host: {
theme: 'bar-buttons'
}
})
export class Buttons {}

View File

@ -0,0 +1,11 @@
# ion-buttons
<!-- Auto Generated Below -->
----------------------------------------------
*Built with [StencilJS](https://stenciljs.com/)*

View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="UTF-8">
<title>Button - Basic</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<script src="/dist/ionic.js"></script>
</head>
<body>
<ion-app>
<ion-header>
<ion-toolbar>
<ion-title>Button - Basic</ion-title>
<ion-buttons slot="start">
<ion-button>start btn</ion-button>
</ion-buttons>
<ion-buttons slot="end">
<ion-button slot="icon-only">
<ion-icon name="more"></ion-icon>
</ion-button>
</ion-buttons>
</ion-toolbar>
</ion-header>
<ion-content padding no-bounce text-center>
Content
</ion-content>
</ion-app>
</body>
</html>