Files
pybricks-code/src/ble/alerts/BluetoothNotAvailable.tsx
T
David Lechner bf4670b25d update to react 18
We were stuck on react 16.x for a long time but dependencies seem to
have caught up enough that migration is trivial now.
2023-05-17 16:33:47 -05:00

26 lines
796 B
TypeScript

// SPDX-License-Identifier: MIT
// Copyright (c) 2022-2023 The Pybricks Authors
import { Intent } from '@blueprintjs/core';
import React from 'react';
import type { CreateToast } from '../../toasterTypes';
import { useI18n } from './i18n';
const BluetoothNotAvailable: React.FunctionComponent = () => {
const i18n = useI18n();
return (
<>
<p>{i18n.translate('bluetoothNotAvailable.message')}</p>
<p>{i18n.translate('bluetoothNotAvailable.suggestion')}</p>
<p>{i18n.translate('bluetoothNotAvailable.browserSupport')}</p>
</>
);
};
export const bluetoothNotAvailable: CreateToast = (onAction) => ({
message: <BluetoothNotAvailable />,
icon: 'error',
intent: Intent.DANGER,
onDismiss: () => onAction('dismiss'),
});