header.js
background: 'black', a
padding: 10, b
display: 'flex' c
})}>
border: 0 d
})} />
footer.js
background: 'black', a
padding: 10, b
display: 'grid' e
})}>
display: 'flex',( c
flexDirection: 'column' f
})} />
output HTML
// header
// footer
output CSS
.a { background: black }
.b { padding: 10px }
.c { display: flex }
.d { border: 0 }
.e { display: grid }
.f { flex-direction: column }