blob: 052991d9825938cb423eb54373d9facdc58a9b87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import KunjunganSales from '@/lib/form/components/KunjunganSales'
export default function kunjungan_sales() {
return (
<>
<Seo title='Kunjungan Sales - Indoteknik.com' />
<BasicLayout>
<KunjunganSales />
</BasicLayout>
</>
)
}
|