├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ ├── Era.tsx ├── Interval.tsx ├── Timeout.tsx ├── __snapshots__ │ └── Era.tsx.snap └── index.tsx ├── example ├── app.tsx ├── assets │ └── .gitkeep ├── index.html ├── index.tsx ├── styled.ts └── utils.ts ├── package.json ├── src ├── Era.tsx ├── Interval.tsx ├── Stopwatch.tsx ├── Timeout.tsx └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | assets 3 | example 4 | custom-typings 5 | __tests__ -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/Era.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/__tests__/Era.tsx -------------------------------------------------------------------------------- /__tests__/Interval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/__tests__/Interval.tsx -------------------------------------------------------------------------------- /__tests__/Timeout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/__tests__/Timeout.tsx -------------------------------------------------------------------------------- /__tests__/__snapshots__/Era.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/__tests__/__snapshots__/Era.tsx.snap -------------------------------------------------------------------------------- /__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/__tests__/index.tsx -------------------------------------------------------------------------------- /example/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/example/app.tsx -------------------------------------------------------------------------------- /example/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/example/styled.ts -------------------------------------------------------------------------------- /example/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/example/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/package.json -------------------------------------------------------------------------------- /src/Era.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/src/Era.tsx -------------------------------------------------------------------------------- /src/Interval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/src/Interval.tsx -------------------------------------------------------------------------------- /src/Stopwatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/src/Stopwatch.tsx -------------------------------------------------------------------------------- /src/Timeout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/src/Timeout.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-on-time/HEAD/yarn.lock --------------------------------------------------------------------------------