Files
stats/apps/docs/src/components/device-id-warning.tsx
Carl-Gerhard Lindesvärd 444e553b74 🧹 clean up duty 🧹
2024-03-28 10:40:49 +01:00

13 lines
320 B
TypeScript

import Link from 'next/link';
import { Callout } from 'nextra/components';
export function DeviceIdWarning() {
return (
<Callout>
Read more about{' '}
<Link href="/docs/device-id">device id and why you might want it</Link>.
**We recommend not to but it&apos;s up to you.**
</Callout>
);
}