Commit 59ee4215 authored by Joel's avatar Joel

feat: entrance struct

parent da82a11b
import type { FC } from 'react'
import React from 'react'
import UniversalChat from '@/app/components/explore/universal-chat'
const Chat: FC = () => {
return (
<UniversalChat />
)
}
export default React.memo(Chat)
'use client'
import type { FC } from 'react'
import React from 'react'
const Chat: FC = () => {
return (
<div>
chat
</div>
)
}
export default React.memo(Chat)
......@@ -2,6 +2,7 @@ const translation = {
title: 'My Apps',
sidebar: {
discovery: 'Discovery',
chat: 'Chat',
workspace: 'Workspace',
action: {
pin: 'Pin',
......
......@@ -2,6 +2,7 @@ const translation = {
title: '我的应用',
sidebar: {
discovery: '发现',
chat: '聊天',
workspace: '工作区',
action: {
pin: '置顶',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment