chain buttons

This commit is contained in:
Robert 2024-03-08 21:35:40 +07:00
parent 00cdcdaeae
commit cf60ead52c
No known key found for this signature in database
GPG Key ID: F631C7FD957D5F22
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1 @@
export { default as ChainButtons } from "./ui/ChainButtons";

View File

@ -0,0 +1,14 @@
import type { Chain } from "@/entities/chain/schema";
import { RenameChainButton } from "@/features/rename-chain";
interface ChainButtonsProps {
chain: Chain;
}
export default function ChainButtons({ chain }: ChainButtonsProps) {
return (
<div>
<RenameChainButton chain={chain} />
</div>
);
}