View fargo.jsx
import React, { Component } from 'react' | |
class ManualStateComponent extends Component { | |
state = { | |
now: null | |
} | |
constructor(props) { | |
super(props) | |
} |
View coin_sorter.txt
# include <iostream> | |
using namespace std; | |
int main () | |
{ | |
// It is good practice to define variables at the top of the file when possible | |
const int dollar {100}; | |
const int quarter {25}; |
View outside-click.tsx
import React from 'react' | |
import { addEventListener } from 'consolidated-events' | |
interface Props { | |
onOutsideClick: any | |
} | |
export default class OutsideClickHandler extends React.Component<Props> { | |
childNode: any | |
removeMouseDown: any |
View gist:a3db362b82996e0be1b9cc881dcaf1f5
class Middleware extends Component { | |
constructor(props) { | |
super(props) | |
this._process() | |
} | |
_process() { | |
const req = // something from browser and props to provide a convention for request information |
View ProtectedRoute.js
import React, {Component} from 'react' | |
import {Route, Redirect} from 'react-router-dom' | |
import userProvider from 'store/providers/user' | |
export default class ProtectedRoute extends Component { | |
constructor(props) { | |
super(props) | |
this.inProgress = false |
View connect.js
import {connect} from 'react-redux' | |
export default function onConnect(keys) { | |
const mapStateToProps = (state) => { | |
const o = {} | |
for(let i = 0, l = keys.length; i < l; i++) { | |
const key = keys[i] |
View get-text.js
function matchNodes(text) { | |
try { | |
const filter = { | |
acceptNode: function(node){ | |
if(node.nodeValue.toLowerCase().includes(text)){ | |
return NodeFilter.FILTER_ACCEPT | |
} |
View index.js
function convertTo(type, data) { | |
switch(type) { | |
case 'hex': | |
case 'string': | |
return Buffer.from(data).toString('hex') | |
case 'buffer': | |
case 'Uint8Array': | |
return Buffer.from(data, 'hex') | |
} |
View example works
// start.js | |
import React from 'react' | |
import ReactDOM from 'react-dom' | |
import { hot } from 'react-hot-loader' | |
const App = () => <div>Hello World!! 4</div> | |
const HotApp = hot(module)(App) | |
ReactDOM.render(<HotApp />, document.getElementById('root')) |
View example
// start.js | |
import React from 'react' | |
import ReactDOM from 'react-dom' | |
import { hot } from 'react-hot-loader' | |
export default function start() { | |
const App = () => <div>Hello World!! 4</div> | |
const HotApp = hot(module)(App) |
NewerOlder