An open API service indexing awesome lists of open source software.

https://github.com/sergeysova/material.ui

Another material ui package
https://github.com/sergeysova/material.ui

Last synced: 6 months ago
JSON representation

Another material ui package

Awesome Lists containing this project

README

          

# material.ui
Another Material UI package

## Readme

> Package now in development
> Please, star it and come back later

## Specification

### Table

https://material.google.com/components/data-tables.html

```javascript



Add
Remove















value.match(/\w+/)} />

```

## Installation

```bash
npm install --save material.ui
```

## Usage

```js
// With webpack and babel

import 'material.ui/styles.css';
import { NavigationBottom, Button, FloatingButton, Chips, Switch } from 'material.ui';
```

```js
// Webpack only

require('material.ui/styles.css');
const { NavigationBottom, Button, FloatingButton, Chips, Switch } = require('material.ui');
```

```js
// Without webpack and babel in the browser
//
// Copy styles.css to your directory
//
//

var NavigationBottom = MaterialUI;
var Button = MaterialUI;
var FloatingButton = MaterialUI;
var Chips = MaterialUI;
var Switch = MaterialUI;
```