├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .npmrc ├── .nvmrc ├── .size-limit.js ├── .size.json ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── index.tsx ├── example ├── app.tsx ├── index.html ├── index.tsx └── styled.ts ├── jest.config.js ├── package.json ├── src ├── component.tsx ├── hook.ts ├── index.ts └── singleton.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /dist/ 3 | .DS_Store 4 | coverage/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .DS_Store 4 | example -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /.size-limit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/.size-limit.js -------------------------------------------------------------------------------- /.size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/.size.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/__tests__/index.tsx -------------------------------------------------------------------------------- /example/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/example/app.tsx -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/example/styled.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/package.json -------------------------------------------------------------------------------- /src/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/src/component.tsx -------------------------------------------------------------------------------- /src/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/src/hook.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/singleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/src/singleton.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-style-singleton/HEAD/yarn.lock --------------------------------------------------------------------------------