export const user = { name: "bolt", surname: "test", age: "99", address: "11/22" }; I don't know which wrong?
My answer is export const user = {}; user.name = "bolt"; user.surname = "test"; user.age = 99; user.address = "11/22";
bolt looks good 👍