mirror of
https://github.com/vercel/commerce.git
synced 2025-07-21 11:51:20 +00:00
16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
import { useState } from 'react'
|
|
import { ButtonCommon, Layout, ModalInfo } from 'src/components/common'
|
|
|
|
import CheckoutSuccess from 'src/components/modules/checkout/CheckoutSuccess/CheckoutSuccess'
|
|
|
|
export default function Test() {
|
|
|
|
return (
|
|
<>
|
|
<CheckoutSuccess />
|
|
</>
|
|
)
|
|
}
|
|
|
|
Test.Layout = Layout
|