// Copyright (C) 2020 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react';
import { Row, Col } from 'antd/lib/grid';
import Text from 'antd/lib/typography/Text';
import { Model } from 'reducers/interfaces';
import DeployedModelItem from './deployed-model-item';
interface Props {
models: Model[];
}
export default function DeployedModelsListComponent(props: Props): JSX.Element {
const { models } = props;
const items = models.map((model): JSX.Element => );
return (
<>
Framework
Name
Type
Description
Labels
{items}
>
);
}