mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Sites Display test
This commit is contained in:
18
components/cards/Sites.tsx
Normal file
18
components/cards/Sites.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
interface SitesProps {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
networks: string[];
|
||||
}
|
||||
|
||||
export default function Sites({ id, name, description, networks }: SitesProps) {
|
||||
return (
|
||||
<div className="card bg-base-200 shadow-xl">
|
||||
<div className="card-body">
|
||||
<h2 className="card-title">{name}</h2>
|
||||
<p>{description}</p>
|
||||
<p>Networks: {networks.join(', ')}</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user