mirror of
https://github.com/documenso/documenso.git
synced 2026-07-09 20:45:00 +10:00
4 lines
193 B
TypeScript
4 lines
193 B
TypeScript
export const generateTwitterIntent = (text: string, shareUrl: string) => {
|
|
return `https://twitter.com/intent/tweet?text=${encodeURIComponent(text)}%0A%0A${encodeURIComponent(shareUrl)}`;
|
|
};
|