Skip to content

Commit

Permalink
no default export
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick committed Jun 27, 2023
1 parent e3f92c1 commit 17bb552
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { Choices } from '../internal/choices/choices';
*/

@customElement('qti-choice-interaction')
export default class QtiChoiceInteraction extends Choices {
export class QtiChoiceInteraction extends Choices {
static styles: CSSResultGroup = styles;

/** orientation of choices */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { QtiChoice } from './internal/choice/qti-choice';
* @slot - The default slot.
*/
@customElement('qti-simple-choice')
export default class QtiSimpleChoice extends QtiChoice {
export class QtiSimpleChoice extends QtiChoice {
override render() {
return html`<div part="ch"><div part="cha"></div></div>
<slot></slot> `;
Expand Down

0 comments on commit 17bb552

Please sign in to comment.