import { Button } from '@components/common/ui/Button.js'; import { Item, ItemActions, ItemContent, ItemDescription, ItemTitle } from '@components/common/ui/Item.js'; import { cn } from '@evershop/evershop/lib/util/cn'; import { Settings } from 'lucide-react'; import React from 'react'; interface TaxSettingMenuProps { taxSettingUrl: string; } export default function TaxSettingMenu({ taxSettingUrl }: TaxSettingMenuProps) { const isActive = typeof window !== 'undefined' && new URL(taxSettingUrl, window.location.origin).pathname === window.location.pathname; return (
Tax Setting
Configure tax classes and tax rates
); } export const layout = { areaId: 'settingPageMenu', sortOrder: 20 }; export const query = ` query Query { taxSettingUrl: url(routeId: "taxSetting") } `;