<script>
import makeItSnow from './makeItSnow.js'
</script>
<div class="parent" use:makeItSnow>
<div class="child">Merry christmas</div>
</div>
<style>
.parent {
height: 100%;
width: 100%;
background-color: DarkRed;
margin: 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.child {
background-color: green;
padding: 30px 100px;
font-size: 45px;
color: DarkRed;
}
</style>