Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
New submission page with team storage/import and export/yaml edit pag…
Browse files Browse the repository at this point in the history
…e/submission section (#5414)
  • Loading branch information
Morningssir authored Apr 7, 2021
1 parent 2ad8aa0 commit 6b441c4
Show file tree
Hide file tree
Showing 22 changed files with 1,126 additions and 120 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import React from 'react';
import { FormSection } from '../form-page';
import { PROTOCOL_TOOLTIPS } from '../../utils/constants';
import { Box, Code } from '../../elements';
import { TeamStorage } from './team-storage';

export const DataComponent = () => {
return (
<FormSection title='Data' tooltip={PROTOCOL_TOOLTIPS.data}>
<Box fontSize='s2'>
The data configured here will be mounted or copied into job container.
You could use them with <Code>{'Container Path'}</Code> value below.
</Box>
<TeamStorage />
</FormSection>
);
};
Loading

0 comments on commit 6b441c4

Please sign in to comment.