16115: Fixes sharing URL building for per-collection domain configs.
[arvados-workbench2.git] / src / views-components / sharing-dialog / sharing-dialog-content.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import React from 'react';
6 import { Grid } from '@material-ui/core';
7
8 import { SharingManagementForm } from './sharing-management-form';
9
10 export const SharingDialogContent = () =>
11     <Grid container direction='column' spacing={24}>
12         <Grid item>
13             <SharingManagementForm />
14         </Grid>
15     </Grid>;