khronoz's picture
Add Query Function Page
3b95b1e
raw
history blame
292 Bytes
"use client";
import Header from "@/app/components/header";
import Main from "@/app/components/ui/main-container";
import QuerySection from "@/app/components/query-section";
export default function Query() {
return (
<Main>
<Header />
<QuerySection />
</Main>
);
}