Removing a component will take it out of the storage and return it.
```rust, noplaypen
{{#include ../../../../tests/book/remove_components.rs:world}}
```
We have to import the [`Remove`](https://docs.rs/shipyard/0.11/shipyard/trait.Remove.html) trait for multiple components.
```rust, noplaypen
{{#include ../../../../tests/book/remove_components.rs:view}}
```