mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-26 02:06:38 +08:00
feat: init
This commit is contained in:
13
app/components/config-scence/index.tsx
Normal file
13
app/components/config-scence/index.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
import type { IWelcomeProps } from '../welcome'
|
||||
import Welcome from '../welcome'
|
||||
|
||||
const ConfigSence: FC<IWelcomeProps> = (props) => {
|
||||
return (
|
||||
<div className='mb-5 antialiased font-sans overflow-hidden shrink-0'>
|
||||
<Welcome {...props} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(ConfigSence)
|
||||
Reference in New Issue
Block a user