#1013·emoji-mart

Allow easy dynamic import of emoji data

Author: singpolymaCreated Nov 9, 2025Updated Nov 9, 2025

I would right like to be able to write

<Picker data={import("@emoji-mart/data")} .../>

But right now, for reasons I don't fully understand, I must write:

<Picker data={async () => ({... await import("@emoji-mart/data") })} />