├── .github ├── FUNDING.yml └── workflows │ └── platformatic.yaml ├── .gitignore ├── README.md ├── index.html ├── index.tsx ├── layout.tsx ├── main.css ├── package.json ├── pages ├── detail.tsx └── list.tsx ├── pnpm-lock.yaml ├── postcss.config.cjs ├── server.tsx ├── tsconfig.json └── util.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/platformatic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/.github/workflows/platformatic.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/index.html -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/index.tsx -------------------------------------------------------------------------------- /layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/layout.tsx -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/main.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/package.json -------------------------------------------------------------------------------- /pages/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/pages/detail.tsx -------------------------------------------------------------------------------- /pages/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/pages/list.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = {plugins:[]}; 2 | -------------------------------------------------------------------------------- /server.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/tsconfig.json -------------------------------------------------------------------------------- /util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TejasQ/react-server-components-from-scratch/HEAD/util.ts --------------------------------------------------------------------------------