mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-09-08 12:13:15 +02:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import { PropsWithChildren } from "react"
|
|
|
|
const Form = ({ children }: PropsWithChildren) => (
|
|
<div className="z-10 flex w-full max-w-80 flex-col gap-4 rounded-md bg-white p-4 shadow-sm">
|
|
{children}
|
|
</div>
|
|
)
|
|
|
|
export default Form
|