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