Files
stats/apps/docs/src/components/device-id-warning.tsx
Carl-Gerhard Lindesvärd 1ca95442b9 add documentation
2024-03-11 13:05:28 +01:00

13 lines
315 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's up to you.**
</Callout>
);
}