├── .gitignore ├── bun.lockb ├── docs └── README.md ├── export.ts ├── package.json ├── rsc.ts ├── src ├── _client.tsx ├── _layout.tsx ├── app │ ├── form │ │ └── page.tsx │ ├── page.tsx │ └── props │ │ └── page.tsx ├── components │ ├── actions.ts │ ├── counter.tsx │ ├── form.tsx │ ├── os.tsx │ └── toaster.tsx ├── database.ts ├── favicon.ico └── types │ └── index.d.ts ├── ssr.ts ├── tailwind.config.js ├── tsconfig.json └── utils.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/.gitignore -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/bun.lockb -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/docs/README.md -------------------------------------------------------------------------------- /export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/export.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/package.json -------------------------------------------------------------------------------- /rsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/rsc.ts -------------------------------------------------------------------------------- /src/_client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/_client.tsx -------------------------------------------------------------------------------- /src/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/_layout.tsx -------------------------------------------------------------------------------- /src/app/form/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/app/form/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/props/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/app/props/page.tsx -------------------------------------------------------------------------------- /src/components/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/components/actions.ts -------------------------------------------------------------------------------- /src/components/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/components/counter.tsx -------------------------------------------------------------------------------- /src/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/components/form.tsx -------------------------------------------------------------------------------- /src/components/os.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/components/os.tsx -------------------------------------------------------------------------------- /src/components/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/components/toaster.tsx -------------------------------------------------------------------------------- /src/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/database.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/ssr.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelrcamargo/r19/HEAD/utils.ts --------------------------------------------------------------------------------