<div class="component-example">This example component takes a sass variable and interprets it along with component styles!</div>
<div class="component-example">{{ text }}</div>
text: >-
This example component takes a sass variable and interprets it along with
component styles!
// example local variable
$example-color: red;
// using local and global variable
.component-example {
border: 8px solid $example-color;
color:green;
}
hello world