import type { FC } from 'react' import React from 'react' import type { IWelcomeProps } from '../welcome' import Welcome from '../welcome' const ConfigScene: FC = (props) => { return (
) } export default React.memo(ConfigScene)