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

11 lines
270 B
TypeScript

import { Callout } from 'nextra/components';
export function PersonalDataWarning() {
return (
<Callout emoji="⚠️">
Keep in mind that this is considered personal data. Make sure you have the
users consent before calling this!
</Callout>
);
}