I'm attempting to establish an array of components representing various steps. Initially, I attempted to assign the type to these steps:
const steps = ref<Component[]>([
Component1,
Component2,
Component3,
]);
However, this approach is not functioning as expected. What would be the correct type for the steps array?