68e0009ab0
Co-authored-by: bwallacee <ben@vega.xyz> Co-authored-by: Dariusz Majcherczyk <dariusz.majcherczyk@gmail.com>
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { useT } from '../../lib/use-t';
|
|
|
|
export const MarketSuspendedBanner = () => {
|
|
const t = useT();
|
|
return <p>{t('Market was suspended by governance')}</p>;
|
|
};
|