I hereby claim:
- I am mjackson on github.
- I am mjackson (https://keybase.io/mjackson) on keybase.
- I have a public key ASDn-_bfhdzaHqvj4gcakU4yKWlK5RyzlcXQRJMQqYp2fwo
To claim this, I am signing this object:
import React from "react"; | |
import pathToRegexp from "path-to-regexp"; | |
function Home() { | |
return <h1>Home</h1>; | |
} | |
function About() { | |
return <h1>About</h1>; | |
} |
I hereby claim:
To claim this, I am signing this object:
import React from "react"; | |
body { | |
font-family: Helvetica, sans-serif; | |
} | |
.header-text { | |
font-weight: bold; | |
font-size: 2em; | |
} |
#!/bin/sh | |
# This script should be saved in a git repo as a hook file, e.g. .git/hooks/pre-receive. | |
# It looks for scripts in the .git/hooks/pre-receive.d directory and executes them in order, | |
# passing along stdin. If any script exits with a non-zero status, this script exits. | |
script_dir=$(dirname $0) | |
hook_name=$(basename $0) | |
hook_dir="$script_dir/$hook_name.d" |
{ | |
"_id": "@dollarshaveclub-engineering/ui", | |
"_rev": "2-5773c0c926d450044de3c87bc8233fad", | |
"name": "@dollarshaveclub-engineering/ui", | |
"description": "DSC Web UI", | |
"dist-tags": { | |
"latest": "2.6.4" | |
}, | |
"versions": { | |
"2.6.3": { |
<Broadcast>
and <Subscriber>
are being deprecated in react-broadcast in favor of a new API inspired by the new React context RFC. The goals of this change for react-broadcast users are:
Instead of using pre-built and
components, you create them for yourself. So instead of:
/*eslint-disable no-alert */ | |
//////////////////////////////////////////////////////////////////////////////// | |
// Exercise: | |
// | |
// Using context, implement the <Form>, <SubmitButton>, and <TextInput> | |
// components such that: | |
// | |
// - Clicking the <SubmitButton> calls <Form onSubmit> | |
// - Hitting "Enter" while in a <TextInput> submits the form | |
// - Don't use a <form> element, we're intentionally recreating the |
FROM node:8 | |
WORKDIR /home/node/app | |
ADD https://github.com/Yelp/dumb-init/releases/download/v1.1.1/dumb-init_1.1.1_amd64 /usr/local/bin/dumb-init | |
RUN chmod +x /usr/local/bin/dumb-init | |
COPY package.json yarn.lock ./ | |
RUN yarn --pure-lockfile | |
COPY . . |
import React from 'react' | |
import ReactDOM from 'react-dom' | |
import PropTypes from 'prop-types' | |
function ContentToggle(props) { | |
let summaryClassName = 'ContentToggle__Summary' | |
if (props.isOpen) | |
summaryClassName += ' ContentToggle__Summary--is-open' |