File size: 292 Bytes
3b95b1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"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>
  );
}