mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import { Card } from "flowbite-react";
|
|
|
|
export const ReleasePlayerCustom = (props: { id: number }) => {
|
|
return (
|
|
<Card>
|
|
<p>ReleasePlayerCustom</p>
|
|
</Card>
|
|
);
|
|
};
|