mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-03 00:26:01 +00:00
updated react example with todo example
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import type { ComponentProps } from "react";
|
||||
|
||||
export function Center(props: ComponentProps<"div">) {
|
||||
return (
|
||||
<div
|
||||
{...props}
|
||||
className={"w-full min-h-full flex justify-center items-center " + props.className}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user