-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wired up mailing list checkbox completely
- Loading branch information
Showing
87 changed files
with
664 additions
and
527 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
firebaseFunctions/node_modules | ||
firebaseFunctions/node_modules/**/* | ||
functions/node_modules/**/* | ||
node_modules/**/* | ||
src/registerServiceWorker.js |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ignore] | ||
.*/firebaseFunctions/node_modules/.* | ||
.*/functions/node_modules/.* | ||
.*/node_modules/.* |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
# dependencies | ||
node_modules | ||
firebaseFunctions/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// flow-typed signature: cf86673cc32d185bdab1d2ea90578d37 | ||
// flow-typed version: 614bf49aa8/classnames_v2.x.x/flow_>=v0.25.x | ||
|
||
type $npm$classnames$Classes = | ||
| string | ||
| { [className: string]: * } | ||
| false | ||
| void | ||
| null; | ||
|
||
declare module "classnames" { | ||
declare module.exports: ( | ||
...classes: Array<$npm$classnames$Classes | $npm$classnames$Classes[]> | ||
) => string; | ||
} | ||
|
||
declare module "classnames/bind" { | ||
declare module.exports: $Exports<"classnames">; | ||
} | ||
|
||
declare module "classnames/dedupe" { | ||
declare module.exports: $Exports<"classnames">; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// flow-typed signature: d9a983bb1ac458a256c31c139047bdbb | ||
// flow-typed version: 927687984d/prop-types_v15.x.x/flow_>=v0.41.x | ||
|
||
type $npm$propTypes$ReactPropsCheckType = ( | ||
props: any, | ||
propName: string, | ||
componentName: string, | ||
href?: string) => ?Error; | ||
|
||
declare module 'prop-types' { | ||
declare var array: React$PropType$Primitive<Array<any>>; | ||
declare var bool: React$PropType$Primitive<boolean>; | ||
declare var func: React$PropType$Primitive<Function>; | ||
declare var number: React$PropType$Primitive<number>; | ||
declare var object: React$PropType$Primitive<Object>; | ||
declare var string: React$PropType$Primitive<string>; | ||
declare var symbol: React$PropType$Primitive<Symbol>; | ||
declare var any: React$PropType$Primitive<any>; | ||
declare var arrayOf: React$PropType$ArrayOf; | ||
declare var element: React$PropType$Primitive<any>; /* TODO */ | ||
declare var instanceOf: React$PropType$InstanceOf; | ||
declare var node: React$PropType$Primitive<any>; /* TODO */ | ||
declare var objectOf: React$PropType$ObjectOf; | ||
declare var oneOf: React$PropType$OneOf; | ||
declare var oneOfType: React$PropType$OneOfType; | ||
declare var shape: React$PropType$Shape; | ||
|
||
declare function checkPropTypes<V>( | ||
propTypes: $Subtype<{[_: $Keys<V>]: $npm$propTypes$ReactPropsCheckType}>, | ||
values: V, | ||
location: string, | ||
componentName: string, | ||
getStack: ?(() => ?string) | ||
) : void; | ||
} |
This file contains 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 file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import React from "react"; | ||
import ReactDOM from "react-dom"; | ||
import App from "./ActionButton.js"; | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import App from './ActionButton.js'; | ||
|
||
it(`renders without crashing`, () => { | ||
const div = document.createElement(`div`); | ||
it('renders without crashing', () => { | ||
const div = document.createElement('div'); | ||
ReactDOM.render(<App />, div); | ||
ReactDOM.unmountComponentAtNode(div); | ||
}); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as ActionButton } from "./ActionButton"; | ||
export { default as ActionButton } from './ActionButton'; |
30 changes: 15 additions & 15 deletions
30
src/components/ActivityIndicator/ActivityIndicator.component.js
This file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as ActivityIndicator } from "./ActivityIndicator.component"; | ||
export { default as ActivityIndicator } from './ActivityIndicator.component'; |
This file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as Answer } from "./Answer.component"; | ||
export { default as Answer } from './Answer.component'; |
This file contains 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 file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import React from "react"; | ||
import ReactDOM from "react-dom"; | ||
import App from "./App.component"; | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import App from './App.component'; | ||
|
||
it(`renders without crashing`, () => { | ||
const div = document.createElement(`div`); | ||
it('renders without crashing', () => { | ||
const div = document.createElement('div'); | ||
ReactDOM.render(<App />, div); | ||
ReactDOM.unmountComponentAtNode(div); | ||
}); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default as App } from "./App.container"; | ||
export { default as App } from './App.container'; |
Oops, something went wrong.