12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
|
|
import { createRenderInstruction } from "./instruction.js";
|
||
|
|
function templateEnter(_result) {
|
||
|
|
return createRenderInstruction({ type: "template-enter" });
|
||
|
|
}
|
||
|
|
function templateExit(_result) {
|
||
|
|
return createRenderInstruction({ type: "template-exit" });
|
||
|
|
}
|
||
|
|
export {
|
||
|
|
templateEnter,
|
||
|
|
templateExit
|
||
|
|
};
|