mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
13 lines
168 B
TypeScript
13 lines
168 B
TypeScript
"use client"
|
|
|
|
import GasFillupForm from "@/components/GasFillupForm"
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main>
|
|
<GasFillupForm />
|
|
</main>
|
|
)
|
|
}
|
|
|