mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 22:08:16 +08:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
|
'use strict'
|
||
|
|
||
|
var schema = require('property-information/html')
|
||
|
var factory = require('./factory')
|
||
|
|
||
|
var html = factory(schema, 'div')
|
||
|
html.displayName = 'html'
|
||
|
|
||
|
module.exports = html
|