// your excel headers
export const headers = {
id: "User ID"
};
// your data
export const values = [
{
id: Math.floor(Math.random() * 69)
}
];
export const filename = `file-${Date.now()}.xlsx`;