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

22 行
521 B

  1. import React from 'react';
  2. import Navbar from "@/components/_App/NavbarYamaha";
  3. import Footer from "@/components/_App/FooterYamaha";
  4. import PageBanner from '@/components/Common/PageBanner';
  5. import CheckoutContent from '@/components/Yamaha/Shop/Checkout';
  6. import * as Icon from 'react-feather';
  7. const Checkout = () => {
  8. return (
  9. <>
  10. <Navbar />
  11. <PageBanner pageTitle="Checkout" />
  12. <CheckoutContent />
  13. <Footer />
  14. </>
  15. )
  16. }
  17. export default Checkout;