# Stateless Widget

To make a stateless widget, you have to do this:

```dart
  class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return //add here the widgets: example 👉 Container()
  }
}
```
