> For the complete documentation index, see [llms.txt](https://ngxf.gitbook.io/platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ngxf.gitbook.io/platform/features/timeout.md).

# Timeout

The timeout directive is an indispensable setTimeout that helps to solve many incomprehensible problems associated with premature initialization or late execution.

## Create Timeout

An example in `COMPONENT.template.html`.

```markup
<ng-container *timeout="3000">
    This text you will see after 3000ms.
</ng-container>
```
