mirror of https://github.com/sveltejs/svelte
18 lines
357 B
18 lines
357 B
import Comment from './Comment.js';
|
|
import EachBlock from './EachBlock.js';
|
|
import Element from './Element.js';
|
|
import ElseBlock from './ElseBlock.js';
|
|
import IfBlock from './IfBlock.js';
|
|
import MustacheTag from './MustacheTag.js';
|
|
import Text from './Text.js';
|
|
|
|
export default {
|
|
Comment,
|
|
EachBlock,
|
|
Element,
|
|
ElseBlock,
|
|
IfBlock,
|
|
MustacheTag,
|
|
Text
|
|
};
|