"official/vision/train.py" did not exist on "1e1353da3ab09b93371b0cb8ba7cc0c26b9790c9"
TrialLog.tsx 515 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as React from 'react';
import LogPathChild from './LogPathChild';

interface TrialLogProps {
    logStr: string;
    id: string;
}

class TrialLog extends React.Component<TrialLogProps, {}> {
    constructor(props: TrialLogProps) {
        super(props);
    }

Lijiao's avatar
Lijiao committed
14
    render(): React.ReactNode {
15
        const { logStr } = this.props;
16

17
18
        return (
            <div>
19
                <LogPathChild eachLogpath={logStr} logName='Log path:' />
20
21
22
23
24
25
            </div>
        );
    }
}

export default TrialLog;