When I create new note, it orders old to new, but I want to order new to old (reverse it). How can i do this ?
my codes:
const notesRef = useFirestore().collection('users').doc(uid).collection("notes");
const {status, data} = useFirestoreCollection(notesRef.orderBy("timezone"));
and its image: (Here, it order like 1-2-3, but i want to order, 3-2-1, new to old)

our return like map:
{data?.docs?.map((d, index) => {
return (<Note
key={index}
id={index}
title={d.data().title}
content={d.data().content}
onDelete={deleteNote}
onDocId={d.id}
timezone={d.data().timezone}
/>);
})}