Skip to content

Commit ae37573

Browse files
committed
chore: lint
1 parent d8f4dbe commit ae37573

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

demo-snippets/svelte/Buttons.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<script lang="typescript">
1+
<script lang="ts">
22
import { Frame } from '@nativescript/core';
33
let isEditing = false;
44
function onNavigationButtonTap() {

demo-snippets/svelte/install.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { install as installBottomSheet } from '@nativescript-community/ui-materi
22
import { installMixins, themer } from '@nativescript-community/ui-material-core';
33

44
import ButtonPlugin from '@nativescript-community/ui-material-button/svelte';
5-
import '../app.scss';
65
import Buttons from './Buttons.svelte';
6+
import '../app.scss';
77

88
installMixins();
99
installBottomSheet();
@@ -24,7 +24,4 @@ export function installPlugin() {
2424
ButtonPlugin.register();
2525
}
2626

27-
export const demos = [
28-
{ name: 'Buttons', path: 'Buttons', component: Buttons },
29-
30-
];
27+
export const demos = [{ name: 'Buttons', path: 'Buttons', component: Buttons }];

0 commit comments

Comments
 (0)