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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <title>Untitled benchmark</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
| <script src="./suite.js"></script> | |
| </head> | |
| <body> | |
| <h1>Open the console to view the results</h1> |
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
| this.state = { | |
| weeks: [ | |
| { | |
| week: [ | |
| { | |
| title: 'JavaScript Assessment', | |
| link: 'https://github.com/rmurphey/js-assessment', | |
| description: 'This is a description.', | |
| }, | |
| { |
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
| this.state = { | |
| week1: [ | |
| { | |
| title: 'JavaScript Assessment', | |
| link: 'https://github.com/rmurphey/js-assessment', | |
| }, | |
| { | |
| title: 'DevDocs, offline version', | |
| link: 'http://devdocs.io/offline', | |
| }, |
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
| this.state = { | |
| title: 'React Weekly Journal', | |
| titleValue: '', | |
| linkValue: '', | |
| week1: [ | |
| { | |
| title: 'JavaScript Assessment', | |
| link: 'https://github.com/rmurphey/js-assessment', | |
| }, | |
| { |
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
| week1: [ | |
| { | |
| title: 'JavaScript Assessment', | |
| link: 'https://github.com/rmurphey/js-assessment', | |
| }, | |
| { | |
| title: 'DevDocs, offline version', | |
| link: 'http://devdocs.io/offline', | |
| }, | |
| { |
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
| append(arr, item) { | |
| return arr.push(item); | |
| } |
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'; | |
| export default class App extends Component { | |
| render() { | |
| return ( | |
| <div className='container'> | |
| <Counter increment={1} /> | |
| <Counter increment={5} /> | |
| <Counter increment={15} /> | |
| <Counter increment={25} /> |
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'; | |
| export default class App extends Component { | |
| render() { | |
| return ( | |
| <div className='container'> | |
| <Counter increment={1} /> | |
| <Counter increment={5} /> | |
| <Counter increment={15} /> | |
| <Counter increment={25} /> |
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'; | |
| const BTC_URL = 'http://54.213.83.132/hackoregon/http/oregon_individual_contributors/'; | |
| export default class App extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| sortOrder: 'ascending', | |
| data: [], |