refactor: migrate loyalty-agent and loyalty-mcp-server components to a new modular structure with updated specs and frontend integration.

This commit is contained in:
2026-07-19 21:43:44 +07:00
parent c3861d6476
commit cda93365ca
128 changed files with 12721 additions and 6343 deletions

9
src/App.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { ChatLayout } from '@/components/chat/ChatLayout'
function App() {
return (
<ChatLayout />
)
}
export default App