import React, { type ReactNode } from 'react'; export function DoubleCard({ children }: { children: ReactNode }) { return ( <>
{children}
); }