mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-29 10:56:24 +02:00
13 lines
219 B
TypeScript
13 lines
219 B
TypeScript
|
|
import React from "react";
|
||
|
|
import { ContactFormGridWithDetails } from "@/components/contact/contact-form";
|
||
|
|
|
||
|
|
const page = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<ContactFormGridWithDetails />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default page;
|