From 9e034810d9d94248caa2a7c4166a2552524a730b Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 7 Jun 2023 16:50:30 -0400 Subject: [PATCH] reorder --- scripts/plop/templates/component/component.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/plop/templates/component/component.hbs b/scripts/plop/templates/component/component.hbs index fa0dfc66..98fcc8fa 100644 --- a/scripts/plop/templates/component/component.hbs +++ b/scripts/plop/templates/component/component.hbs @@ -1,8 +1,8 @@ -import { html } from 'lit'; import { customElement, property } from 'lit/decorators.js'; -import ShoelaceElement from '../../internal/shoelace-element'; -import { watch } from '../../internal/watch'; +import { html } from 'lit'; import { LocalizeController } from '../../utilities/localize'; +import { watch } from '../../internal/watch'; +import ShoelaceElement from '../../internal/shoelace-element'; import styles from './{{ tagWithoutPrefix tag }}.styles'; import type { CSSResultGroup } from 'lit';