You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
338 B
13 lines
338 B
/* @flow */
|
|
|
|
import modules from './server/modules/index'
|
|
import directives from './server/directives/index'
|
|
import { isUnaryTag, canBeLeftOpenTag } from './compiler/util'
|
|
import { createBasicRenderer } from 'server/create-basic-renderer'
|
|
|
|
export default createBasicRenderer({
|
|
modules,
|
|
directives,
|
|
isUnaryTag,
|
|
canBeLeftOpenTag
|
|
})
|
|
|