6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
|
export const data = async () => {
|
||
|
const response = await fetch('https://cdn.jsdelivr.net/npm/@emoji-mart/data')
|
||
|
|
||
|
return response.json()
|
||
|
}
|