16 lines
278 B
Text
16 lines
278 B
Text
|
---
|
||
|
const { text } = Astro.props;
|
||
|
const words = text.split(' ');
|
||
|
const last = words.length - 1;
|
||
|
---
|
||
|
<style>
|
||
|
span {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
</style>
|
||
|
{words.map((word, i) => (
|
||
|
<Fragment>
|
||
|
<span>{word}</span>{i !== last && (<Fragment> </Fragment>)}
|
||
|
</Fragment>
|
||
|
))}
|