mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
import { mount } from 'riot';
|
|
|
|
export default function renderCompiledButUnmounted(component) {
|
|
mount('root', component.tagName, component.opts || {});
|
|
}
|