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> <p>
Start your development with Start your development with
<a>Riot</a>, a component-based ui library, running on the <a>Riot</a>, a component-based ui library, running on the
<a>Vite</a> front-end tooling. <a>Vite</a> front-end tooling.
</p> </p>
<h2>Getting Started</h2> <h2>Getting Started</h2>

View File

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

View File

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