import { Focusable, updaterFieldClasses } from '@decky/ui'; import { FunctionComponent, ReactNode } from 'react'; interface InlinePatchNotesProps { date: ReactNode; title: string; children: ReactNode; onClick?: () => void; } const InlinePatchNotes: FunctionComponent = ({ date, title, children, onClick }) => { return (
{date}
{title}
{children}
); }; export default InlinePatchNotes;