remove trailing spaces

This commit is contained in:
Geoff Doty 2022-09-08 23:02:22 -04:00
parent 0cbb70ffdf
commit eb6db07ed7
3 changed files with 6 additions and 6 deletions

View File

@ -5,8 +5,8 @@
<p>
Start your development with
<a>Riot</a>, a component-based ui library, running on the
<a>Vite</a> front-end tooling.
<a>Riot</a>, a component-based ui library, running on the
<a>Vite</a> front-end tooling.
</p>
<h2>Getting Started</h2>

View File

@ -15,8 +15,8 @@ code {
}
.flex {
display: flex;
justify-content: space-evenly;
display: flex;
justify-content: space-evenly;
text-align: center;
}

View File

@ -2,10 +2,10 @@ import {register, mount} from 'riot';
/**
* Register Global Components
*
*
* helper that registers and mounts global components
* via an object registry
*
*
* @param {Object} registry key:value object registry
*/
export function Register(registry = {}) {