13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
import { Callout } from 'fumadocs-ui/components/callout';
|
|
import Link from 'next/link';
|
|
|
|
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>
|
|
);
|
|
}
|