8 lines
173 B
React
8 lines
173 B
React
import React from 'react'
|
|
import CustomerCom from '../components/customer/CustomerCom'
|
|
export default function CustomerPage() {
|
|
return (
|
|
<CustomerCom />
|
|
)
|
|
}
|