Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;