9 lines
132 B
TypeScript
9 lines
132 B
TypeScript
import { type FC } from 'react'
|
|
|
|
const Payment: FC = () => {
|
|
return (
|
|
<div>Payment</div>
|
|
)
|
|
}
|
|
|
|
export default Payment |