A Typescript React boilerplate for frontend development that consists of Quddus personal favourite packages.
- RsBuild and RsPack for buildkit
- React Compiler
- Biome for linting
- Tanstack Router for file-based routing
- Tanstack Query for data fetching
- TailwindCSS for styling
Routing is done via file-based routing thanks to TanStack Router. This means that each route is a file in the src/routes
directory. The file should export a React component as default.
- Make sure the app is running via
p run dev
- Create a new file in
src/routes
named eitherroutename/index.tsx
orroutename.tsx
. Both are the same. - The file should export a React component as default.