export function Help({ clickables, isLoading, }: { clickables: string[] isLoading: boolean }) { return (
{isLoading ? ⌛ Generating areas for clicks and drag & drop, please wait.. : 💡 Try to click on: }
{clickables.map((clickable, i) =>
{clickable}
{i < (clickables.length - 1) ?
,
: null}
)}
) }