├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .huskyrc.js ├── .prettierignore ├── .prettierrc.js ├── README.md ├── babel-jest.config.js ├── jest.config.js ├── package.json ├── src ├── FeedbackFish.tsx ├── index.ts ├── setupTests.ts ├── test │ └── index.test.tsx └── useFeedbackFish.ts ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /.huskyrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/.huskyrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | proseWrap: "always", 3 | semi: false, 4 | } 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/README.md -------------------------------------------------------------------------------- /babel-jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/babel-jest.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/package.json -------------------------------------------------------------------------------- /src/FeedbackFish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/src/FeedbackFish.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom/extend-expect" 2 | -------------------------------------------------------------------------------- /src/test/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/src/test/index.test.tsx -------------------------------------------------------------------------------- /src/useFeedbackFish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/src/useFeedbackFish.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedback-fish/feedback-fish-react/HEAD/yarn.lock --------------------------------------------------------------------------------