├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── example ├── .npmignore ├── .prettierrc ├── index.html ├── index.tsx ├── package.json ├── tsconfig.json └── yarn.lock ├── logo.png ├── package.json ├── src ├── Letter.tsx └── index.tsx ├── test ├── Letter.test.tsx └── setupTests.ts ├── tsconfig.json ├── vite.config.ts ├── vitest.config.ts └── yarn.lock /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | .cache 5 | dist 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/README.md -------------------------------------------------------------------------------- /example/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist -------------------------------------------------------------------------------- /example/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/example/.prettierrc -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/package.json -------------------------------------------------------------------------------- /src/Letter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/src/Letter.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Letter.js'; 2 | -------------------------------------------------------------------------------- /test/Letter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/test/Letter.test.tsx -------------------------------------------------------------------------------- /test/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/test/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mat-sz/react-letter/HEAD/yarn.lock --------------------------------------------------------------------------------