ユーザ用ツール

サイト用ツール


サイドバー

react:materialui

以前のリビジョンの文書です


Material UI

MATERIAL-UI

// with npm
npm install @material-ui/core

>npm install typeface-roboto --save

>npm install @material-ui/icons
import React from 'react';
import Button from '@material-ui/core/Button';
import { Table, Input } from '@material-ui/core';

function MyForm() {
  return (
    <div>
    <Button variant="contained" color="primary" size="large">
      Hello World
    </Button><br/>
    <Input type="tel" className="inpp"></Input>
    <Table style={{width:"100px"}}>
        <tr>
            <th className="col1">aa</th>
            <th >bb</th>
        </tr>
        <tr>
            <th>c</th>
            <th>d</th>
        </tr>
    </Table>
    </div>
  );
}
react/materialui.1572702281.txt.gz · 最終更新: 2019/11/02 22:44 by ips