/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import { SpaceBetween, ContentLayout, Header } from '@cloudscape-design/components'; import * as React from 'react'; import { createCaseLabels } from '../../common/labels'; import CreateCasesForm from './CreateCasesForm'; function CreateCasePage() { return (
{createCaseLabels.createNewCaseLabel}
} >
); } export default CreateCasePage;