(props: { lab: LabEntry })
| 900 | } |
| 901 | |
| 902 | function LabPage(props: { lab: LabEntry }) { |
| 903 | return ( |
| 904 | <Fragment> |
| 905 | <DetailHeader |
| 906 | eyebrow={<a href="/labs">Labs</a>} |
| 907 | title={props.lab.name} |
| 908 | description={props.lab.description} |
| 909 | code={props.lab.id} |
| 910 | copyValue={props.lab.id} |
| 911 | /> |
| 912 | <Facts |
| 913 | items={[ |
| 914 | ["Models", props.lab.models.length], |
| 915 | ["Providers", props.lab.providerCount], |
| 916 | ["Updated", props.lab.lastUpdated ?? "-"], |
| 917 | ]} |
| 918 | /> |
| 919 | <ModelTable models={props.lab.models} title="Models" showLab={false} /> |
| 920 | </Fragment> |
| 921 | ); |
| 922 | } |
| 923 | |
| 924 | function Overview(props: { |
| 925 | title: string; |
nothing calls this directly
no outgoing calls
no test coverage detected