import React from 'react';
import { Dropdown, IconButton, Icon, useModal } from '@ohif/ui';
const PreferencesDropdown = () => {
const { show } = useModal();
const showAboutModal = () => {
const modalComponent = () =>
About modal
;
show({
content: modalComponent,
title: 'About',
});
};
const showPreferencesModal = () => {
const modalComponent = () => Preferences modal
;
show({
content: modalComponent,
title: 'Preferences',
});
};
return (
{}}
>
);
};
export default PreferencesDropdown;