├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico ├── index.css └── logo.svg ├── screenshots └── react-server-components-rsc-no-framework-demo-screenshot.png ├── server ├── main.js └── server.js ├── src ├── app │ ├── app.jsx │ ├── button.jsx │ ├── client-debug.jsx │ ├── client-list-item.jsx │ ├── client-list.jsx │ ├── create.jsx │ ├── debug.jsx │ ├── edit.jsx │ ├── error-boundary.jsx │ ├── form.jsx │ ├── header.jsx │ ├── items.jsx │ ├── link.jsx │ ├── list-item.jsx │ ├── list.jsx │ ├── loader.jsx │ ├── not-found.jsx │ ├── root.jsx │ ├── router.jsx │ ├── rsc-refresh-button.jsx │ ├── status-alert.jsx │ ├── tabs.jsx │ └── viewer.jsx ├── client.js ├── routes.js └── utils │ ├── fixtures.js │ ├── id.js │ └── logger.js ├── templates └── index.html └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/public/index.css -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/public/logo.svg -------------------------------------------------------------------------------- /screenshots/react-server-components-rsc-no-framework-demo-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/screenshots/react-server-components-rsc-no-framework-demo-screenshot.png -------------------------------------------------------------------------------- /server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/server/main.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/server/server.js -------------------------------------------------------------------------------- /src/app/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/app.jsx -------------------------------------------------------------------------------- /src/app/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/button.jsx -------------------------------------------------------------------------------- /src/app/client-debug.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/client-debug.jsx -------------------------------------------------------------------------------- /src/app/client-list-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/client-list-item.jsx -------------------------------------------------------------------------------- /src/app/client-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/client-list.jsx -------------------------------------------------------------------------------- /src/app/create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/create.jsx -------------------------------------------------------------------------------- /src/app/debug.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/debug.jsx -------------------------------------------------------------------------------- /src/app/edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/edit.jsx -------------------------------------------------------------------------------- /src/app/error-boundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/error-boundary.jsx -------------------------------------------------------------------------------- /src/app/form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/form.jsx -------------------------------------------------------------------------------- /src/app/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/header.jsx -------------------------------------------------------------------------------- /src/app/items.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/items.jsx -------------------------------------------------------------------------------- /src/app/link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/link.jsx -------------------------------------------------------------------------------- /src/app/list-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/list-item.jsx -------------------------------------------------------------------------------- /src/app/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/list.jsx -------------------------------------------------------------------------------- /src/app/loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/loader.jsx -------------------------------------------------------------------------------- /src/app/not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/not-found.jsx -------------------------------------------------------------------------------- /src/app/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/root.jsx -------------------------------------------------------------------------------- /src/app/router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/router.jsx -------------------------------------------------------------------------------- /src/app/rsc-refresh-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/rsc-refresh-button.jsx -------------------------------------------------------------------------------- /src/app/status-alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/status-alert.jsx -------------------------------------------------------------------------------- /src/app/tabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/tabs.jsx -------------------------------------------------------------------------------- /src/app/viewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/app/viewer.jsx -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/client.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/utils/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/utils/fixtures.js -------------------------------------------------------------------------------- /src/utils/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/utils/id.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/src/utils/logger.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/templates/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziir/rsc-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------