# Instantiating a struct Without the new Keyword You can omit the **new** keyword when instantiating a **struct**. ``` // Definition @Component struct MyComponent { build() { } } // Use Column() { MyComponent() } // Equivalent to new Column() { new MyComponent() } ```