mirror of
https://github.com/fspc/workstand.git
synced 2026-09-16 16:41:38 -04:00
Not sure why these aren't in master but here we go! (#34)
* Load webpack only in debug. * Second stab at buildfile. * Move button. * Add new line. * Linting. * Spelling mistake. * Clean up. * Use babel-polyfill. * Updated Configuration Files for Fresh Install
This commit is contained in:
@@ -1,8 +1,5 @@
|
||||
import ContentAdd from 'material-ui/svg-icons/content/add';
|
||||
import fetch from 'isomorphic-fetch';
|
||||
import FloatingActionButton from 'material-ui/FloatingActionButton';
|
||||
import moment from 'moment';
|
||||
import { polyFill } from 'es6-promise';
|
||||
import React from 'react';
|
||||
import RaisedButton from 'material-ui/RaisedButton';
|
||||
|
||||
@@ -150,9 +147,6 @@ export default class SignIn extends React.Component {
|
||||
</div>
|
||||
<div className="mdl-grid">
|
||||
<SignedInList members={this.state.signedIn} />
|
||||
<FloatingActionButton href="/members/new/">
|
||||
<ContentAdd />
|
||||
</FloatingActionButton>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import ContentAdd from 'material-ui/svg-icons/content/add';
|
||||
import FloatingActionButton from 'material-ui/FloatingActionButton';
|
||||
import _ from 'lodash';
|
||||
import React, { PropTypes } from 'react';
|
||||
import { Table, TableBody, TableHeader, TableHeaderColumn, TableRow, TableRowColumn } from 'material-ui/Table';
|
||||
@@ -50,6 +52,9 @@ export default class SignedInList extends React.Component {
|
||||
return (
|
||||
<div className="mdl-cell mdl-cell--12-col">
|
||||
<h3>Members signed in</h3>
|
||||
<FloatingActionButton href="/members/new/">
|
||||
<ContentAdd />
|
||||
</FloatingActionButton>
|
||||
<Table selectable={false}>
|
||||
<TableHeader adjustForCheckbox={false} displaySelectAll={false}>
|
||||
<TableRow>
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import React from 'react';
|
||||
import { polyFill } from 'es6-promise';
|
||||
import fetch from 'isomorphic-fetch';
|
||||
import { Table, TableBody, TableHeader, TableHeaderColumn, TableRow, TableRowColumn } from 'material-ui/Table';
|
||||
import FlatButton from 'material-ui/FlatButton';
|
||||
import { Toolbar, ToolbarGroup, ToolbarSeparator, ToolbarTitle } from 'material-ui/Toolbar';
|
||||
import { Toolbar, ToolbarGroup} from 'material-ui/Toolbar';
|
||||
import TextField from 'material-ui/TextField';
|
||||
import RaisedButton from 'material-ui/RaisedButton';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user