This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/jupyter/jupyter/wiki/Jupyter-kernels |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AIzaSyBEDfNcQRmKQEyulDN8nGWjLYPm8s4YB58 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700'); | |
| @import 'https://fonts.googleapis.com/icon?family=Material+Icons'; | |
| @import '~@angular/material/prebuilt-themes/indigo-pink.css'; | |
| body { | |
| font-family: 'Roboto', sans-serif; | |
| font-size: 14px; | |
| background-color: #efefef; | |
| padding: 0; | |
| margin: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yarn config set ignore-engines true -g |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react' | |
| import { AppBar, Toolbar, Typography } from 'material-ui' | |
| class Header extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <AppBar position="static"> | |
| <Toolbar> | |
| <Typography variant="headline" color="inherit"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react' | |
| import { Grid } from 'material-ui' | |
| import LeftPane from './LeftPane' | |
| import RightPane from './RightPane' | |
| const styles = { | |
| Paper: { | |
| padding: 20, | |
| marginTop: 10, | |
| marginButton: 10, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component, Fragment } from 'react' | |
| import { Header, Footer } from './layouts' | |
| import Exerciese from './exercises' | |
| import { muscles, exercises } from './../store' | |
| export default class App extends Component { | |
| constructor(props) { | |
| super(props) | |
| this.state = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react' | |
| import { Grid, Paper, Typography } from 'material-ui' | |
| class RightPane extends Component { | |
| constructor(props) { | |
| super(props) | |
| this.state = { | |
| styles: this.props.styles, | |
| exercises: this.props.exercises | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component, Fragment } from 'react' | |
| import { | |
| Grid, | |
| Paper, | |
| Typography, | |
| List, | |
| ListItem, | |
| ListItemText | |
| } from 'material-ui' |