Commit Graph

3 Commits

Author SHA1 Message Date
4cf060136d refactor: remove unused components and files; update List component to use client-side rendering
- Deleted List.tsx, action.tsx, react.svg, client.tsx, entry.browser.tsx, entry.rsc.tsx, entry.ssr.tsx, error-boundary.tsx, request.tsx, index.css, and root.tsx as they were no longer needed.
- Updated List component in pages/a/index.tsx to use useEffect for client-side behavior.
- Removed pages/b/index.tsx as it was redundant.
- Added new browser-entry.tsx and entry.tsx for client-side and server-side rendering respectively.
- Introduced versioned component in pages/v/a/index.tsx to demonstrate async data fetching.
- Updated tsconfig.json to allow unused local variables.x
2026-04-14 11:10:58 +08:00
f22899e424 feat: implement dynamic page loading and server components 2026-04-14 10:09:00 +08:00
11e75d0e11 feat: add initial implementation of Vite + RSC application
- Created a new SVG logo for Vite.
- Added a List component for rendering a simple list.
- Implemented server-side counter functionality with actions.
- Introduced a React SVG logo for branding.
- Developed a ClientCounter component for client-side state management.
- Set up entry points for RSC and SSR rendering.
- Established error boundary for global error handling.
- Created request handling utilities for differentiating RSC and SSR requests.
- Added global styles for the application.
- Built the main application structure in the Root component.
- Configured Vite with RSC and React plugins for optimal development experience.
2026-04-14 09:27:24 +08:00