blob: 54a8b5e91ba210443dbfb7a0df5a2c55bb83dea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import React from 'react'
const ExperimentMetadataComponent = ({
experimentName,
pathName,
traceName,
schedulerName,
}) => (
<div>
<h2>{experimentName}</h2>
<p>
Path: <strong>{pathName}</strong>
</p>
<p>
Trace: <strong>{traceName}</strong>
</p>
<p>
Scheduler: <strong>{schedulerName}</strong>
</p>
</div>
)
export default ExperimentMetadataComponent
|