mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-10 00:02:40 +02:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
|
|
import React from 'react'
|
||
|
|
import { ContactFormGridWithDetails } from '@/components/contact/contact-form'
|
||
|
|
|
||
|
|
const page = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<ContactFormGridWithDetails />
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default page
|