6 lines
199 B
TypeScript
6 lines
199 B
TypeScript
|
|
export const generateTwitterIntent = (text: string, shareUrl: string) => {
|
||
|
|
return `https://twitter.com/intent/tweet?text=${encodeURIComponent(text)}%0A${encodeURIComponent(
|
||
|
|
shareUrl,
|
||
|
|
)}`;
|
||
|
|
};
|