index.tsx 346 B

12345678910111213
  1. import type { FC } from 'react'
  2. import React from 'react'
  3. import type { IWelcomeProps } from '../welcome'
  4. import Welcome from '../welcome'
  5. const ConfigScene: FC<IWelcomeProps> = (props) => {
  6. return (
  7. <div className='mb-5 antialiased font-sans shrink-0'>
  8. <Welcome {...props} />
  9. </div>
  10. )
  11. }
  12. export default React.memo(ConfigScene)