Include component into template or another component.
Code for component called "header":
<h1>Hello world!</h1>
Template code:
<html> <body> {% include "header" %} </body> </html>
Parse result:
<html> <body> <h1>Hello world!</h1> </body> </html>