mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-24 19:37:26 +00:00
19 lines
482 B
TypeScript
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>
|
|
);
|
|
};
|