// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { Flex } from "@radix-ui/themes";
import { type FC, type ReactNode } from "react";
interface RootProps {
children: ReactNode;
}
export const Root: FC<RootProps> = ({ children }) => {
return (
<Flex mt="7" direction="column" align="center" gap="3">
{children}
</Flex>
);
};