import styles from "./styles.module.css"; import clsx from "clsx"; import React from "react"; /** * Toggle between categorized and A–Z views in the glossary. */ export interface ViewToggleProps { isSimplifiedView: boolean; onChange: (simplified: boolean) => void; } export const ViewToggle: React.FC = ({ isSimplifiedView, onChange }) => { return (

Views:

); }; export default ViewToggle;