├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── bsconfig.json ├── changelog.md ├── license ├── now.json ├── package.json ├── public └── index.html ├── readme.md ├── src ├── __tests__ │ └── store_test.re ├── components │ ├── App.re │ ├── Button.re │ ├── Checkmark.re │ ├── Feature.re │ ├── Features.re │ ├── Hero.re │ ├── Root.re │ ├── Soon.re │ ├── Svg.re │ └── __tests__ │ │ └── App_test.re ├── globalStyles.re ├── index.re └── store.re └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/.gitignore -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/bsconfig.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/changelog.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/license -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/public/index.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/readme.md -------------------------------------------------------------------------------- /src/__tests__/store_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/__tests__/store_test.re -------------------------------------------------------------------------------- /src/components/App.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/App.re -------------------------------------------------------------------------------- /src/components/Button.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Button.re -------------------------------------------------------------------------------- /src/components/Checkmark.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Checkmark.re -------------------------------------------------------------------------------- /src/components/Feature.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Feature.re -------------------------------------------------------------------------------- /src/components/Features.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Features.re -------------------------------------------------------------------------------- /src/components/Hero.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Hero.re -------------------------------------------------------------------------------- /src/components/Root.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Root.re -------------------------------------------------------------------------------- /src/components/Soon.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Soon.re -------------------------------------------------------------------------------- /src/components/Svg.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/Svg.re -------------------------------------------------------------------------------- /src/components/__tests__/App_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/components/__tests__/App_test.re -------------------------------------------------------------------------------- /src/globalStyles.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/globalStyles.re -------------------------------------------------------------------------------- /src/index.re: -------------------------------------------------------------------------------- 1 | include GlobalStyles; 2 | 3 | ReactDOMRe.renderToElementWithId(, "root"); 4 | -------------------------------------------------------------------------------- /src/store.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/src/store.re -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyze/reason-calculator/HEAD/yarn.lock --------------------------------------------------------------------------------