mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
We were stuck on react 16.x for a long time but dependencies seem to have caught up enough that migration is trivial now.
26 lines
796 B
TypeScript
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'),
|
|
});
|