Skip to content

Commit ce7888c

Browse files
committed
using correct lit element import
1 parent 0adda46 commit ce7888c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
File renamed without changes.

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { v4 as uuidv4 } from 'uuid'
55
import type { Task } from './types/task.type';
66
import { Person } from './classes/person.class'
77
import { makeObservable, observable, action } from "mobx"
8-
import { LitElement, html } from 'lit-element';
9-
import './src/components/my-elements.js';
10-
8+
import './components/my-element.ts';
9+
import { html, TemplateResult } from 'lit';
10+
import { MobxLitElement } from '@adobe/lit-mobx';
1111

1212
const person = new Person('John')
1313

0 commit comments

Comments
 (0)