feat: tanstack AI Chat example#404
Open
jcbsfilho wants to merge 4 commits into
Open
Conversation
pablodiehl
previously approved these changes
Jun 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new React template project for a Tanstack-based AI chat application, including all the necessary configuration, dependencies, and core UI components. The changes set up the project structure, add essential documentation, and implement key UI elements for chat functionality and conversation management.
Project setup and configuration:
.gitignoreand.prettierignore, to specify which files and directories to exclude from version control and formatting. [1] [2]package.jsonwith dependencies for Tanstack libraries, React, Tailwind CSS, and supporting tools, as well as scripts for development and production builds.site.webmanifestfor PWA support and placeholder icons.Documentation:
README.mdwith instructions for local development, deployment to Azion, and a deploy button for easy setup.Core UI components:
Chat,ChatPanel, and supporting components.Sidebar.tsx) and conversation history drawer (HistoryDrawer.tsx) for managing and organizing conversations, including grouping by time and conversation actions (load, delete, new). [1] [2]