Updated js dev docs with latest component changes

This commit is contained in:
Dan Brown
2022-11-16 16:02:31 +00:00
parent be736b3939
commit 05a24ea355
2 changed files with 25 additions and 7 deletions

View File

@ -158,7 +158,7 @@ export function first(name) {
* @param {String} name
* @returns {Component[]}
*/
export function get(name = '') {
export function get(name) {
return components[name] || [];
}