// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 import React from 'react'; import SideNavigation, { SideNavigationProps } from '@cloudscape-design/components/side-navigation'; const items: SideNavigationProps['items'] = [ { type: 'link', text: 'Dashboard', href: '/home/index.html' }, { type: 'link', text: 'Flavors', href: '/flavors/index.html' }, { type: 'link', text: 'Create flavor', href: '/create-flavor/index.html' }, ]; export default function Navigation() { return ( <> ); }