diff --git a/pages/content-layout/secondary-header-breakpoint.page.tsx b/pages/content-layout/secondary-header-breakpoint.page.tsx new file mode 100644 index 0000000000..e8ff113d9a --- /dev/null +++ b/pages/content-layout/secondary-header-breakpoint.page.tsx @@ -0,0 +1,84 @@ +// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +// SPDX-License-Identifier: Apache-2.0 +import React, { useState } from 'react'; + +import Box from '~components/box'; +import Button from '~components/button'; +import ContentLayout, { ContentLayoutProps } from '~components/content-layout'; +import FormField from '~components/form-field'; +import Header from '~components/header'; +import Select from '~components/select'; +import SpaceBetween from '~components/space-between'; + +import { Containers } from '../app-layout/utils/content-blocks'; +import ScreenshotArea from '../utils/screenshot-area'; + +const breakpointOptions: ReadonlyArray<{ value: ContentLayoutProps.SecondaryHeaderBreakpoint }> = [ + { value: 'xxs' }, + { value: 'xs' }, + { value: 's' }, + { value: 'm' }, + { value: 'l' }, + { value: 'xl' }, +]; + +function QuickLaunch() { + return ( + + + + Quick launch + + + + + + + + + ); +} + +export default function () { + const [breakpoint, setBreakpoint] = useState('xs'); + + return ( +
+ + +