Files
mastodon/app/javascript/flavours/glitch/features/annual_report/share.tsx
2025-12-04 21:17:30 +01:00

19 lines
482 B
TypeScript

import type { FC } from 'react';
import { IconLogo } from '@/flavours/glitch/components/logo';
import { AnnualReport } from './index';
import classes from './share.module.css';
export const WrapstodonShare: FC = () => {
return (
<main className={classes.wrapper}>
<AnnualReport share={false} />
<footer className={classes.footer}>
<IconLogo className={classes.logo} />
Generated with by the Mastodon team
</footer>
</main>
);
};