├── .gitignore ├── .storybook ├── main.js └── preview.js ├── LICENSE ├── README.md ├── fps_screen.png ├── package.json ├── renovate.json ├── rollup.config.js ├── src ├── FpsView.stories.tsx ├── FpsView.tsx ├── index.ts ├── useFps.ts └── useStyles.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | 2 | export const parameters = { 3 | actions: { argTypesRegex: "^on[A-Z].*" }, 4 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/README.md -------------------------------------------------------------------------------- /fps_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/fps_screen.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/renovate.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/FpsView.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/src/FpsView.stories.tsx -------------------------------------------------------------------------------- /src/FpsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/src/FpsView.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/useFps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/src/useFps.ts -------------------------------------------------------------------------------- /src/useStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/src/useStyles.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesKlauss/react-fps/HEAD/yarn.lock --------------------------------------------------------------------------------