├── .github └── workflows │ └── prepublish.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src ├── create-facade.test.tsx ├── create-facade.tsx └── index.ts ├── tsconfig.json └── vitest.config.ts /.github/workflows/prepublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/.github/workflows/prepublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/package.json -------------------------------------------------------------------------------- /src/create-facade.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/src/create-facade.test.tsx -------------------------------------------------------------------------------- /src/create-facade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/src/create-facade.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbles/react-facade/HEAD/vitest.config.ts --------------------------------------------------------------------------------