sendou.ink/app/components/match-page/MatchResultTab.tsx
Kalle 2b5b1b1948
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
New match page (#3032)
2026-05-04 18:15:10 +03:00

17 lines
437 B
TypeScript

import type * as React from "react";
import { SendouTabPanel } from "../elements/Tabs";
import { TAB_KEYS } from "./MatchTabs";
import { MatchTimeline, type MatchTimelineProps } from "./MatchTimeline";
export function MatchResultTab({
children,
...props
}: MatchTimelineProps & { children?: React.ReactNode }) {
return (
<SendouTabPanel id={TAB_KEYS.RESULT}>
<MatchTimeline {...props} />
{children}
</SendouTabPanel>
);
}