Initial commit with 🏗️ create-eth @ 2.0.4
This commit is contained in:
15
packages/nextjs/components/oracle/optimistic/EmptyRow.tsx
Normal file
15
packages/nextjs/components/oracle/optimistic/EmptyRow.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
export const EmptyRow = ({
|
||||
message = "No assertions match this state.",
|
||||
colspan = 4,
|
||||
}: {
|
||||
message?: string;
|
||||
colspan?: number;
|
||||
}) => {
|
||||
return (
|
||||
<tr>
|
||||
<td colSpan={colspan} className="text-center">
|
||||
{message}
|
||||
</td>
|
||||
</tr>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user