2023-09-08 13:21:18 +00:00
|
|
|
export const getYoutubeLink = (id: string): string =>
|
|
|
|
`https://www.youtube.com/watch?v=${id}`;
|
2023-09-08 23:36:41 +00:00
|
|
|
|
|
|
|
export const getYoutubeEmbedLink = (id: string): string =>
|
|
|
|
`https://www.youtube-nocookie.com/embed/${id}`;
|