import React from 'react'; import { Button } from '@carbon/react'; import { UserSettings } from '@carbon/react/icons'; import { useTranslation } from 'react-i18next'; import { navigate } from '@openmrs/esm-framework'; import styles from './stock-settings.scss'; function StockSettings() { const { t } = useTranslation(); return (
{t( 'comingSoonUnderDev', 'Exciting updates are on the way! In the meantime, use the link below to access Admin UI settings.', )}
); } export default StockSettings;