├── .gitignore ├── .prettierrc ├── package.json ├── src ├── app │ └── App.tsx └── index.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/rsc-without-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/rsc-without-nextjs/HEAD/src/app/App.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/rsc-without-nextjs/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhyo/rsc-without-nextjs/HEAD/tsconfig.json --------------------------------------------------------------------------------