mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
26 lines
615 B
JavaScript
26 lines
615 B
JavaScript
import { render } from '@divkitframework/divkit/server';
|
|
|
|
console.log(render({
|
|
id: 'test',
|
|
json: {
|
|
"templates": {
|
|
"wrap_content_text": {
|
|
"type": "text",
|
|
"width": {"type": "wrap_content"}
|
|
}
|
|
},
|
|
"card": {
|
|
"log_id": "snapshot_test_card",
|
|
"states": [
|
|
{
|
|
"state_id": 0,
|
|
"div": {
|
|
"type": "wrap_content_text",
|
|
"text": "Hello divkit"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}));
|