The structure directive is just a sugar syntax of <template>.spa
Such as:code
<div *ngIf="name.length > 2"> This is something... </div>
Equal to:blog
<template [ngIf]="name.length > 2"> <div> There are somoething</div> </template>