暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

test.js 461B

123456789101112131415161718192021
  1. import Layout from "../components/layout/Layout";
  2. function Test() {
  3. return (
  4. <>
  5. <Layout
  6. headTitle="Profile"
  7. pageTitle="Profile"
  8. pageTitleSub={"Welcome Intez Settings Profile page"}
  9. pageClass={"dashboard"}
  10. parent={"Settings"}
  11. child={"Profile"}
  12. >
  13. </Layout>
  14. </>
  15. );
  16. }
  17. export default Test;