5 lines
102 B
JavaScript
5 lines
102 B
JavaScript
|
import { showTree } from "./tree.js";
|
||
|
function showLeftPage(){
|
||
|
showTree();
|
||
|
}
|
||
|
export {showLeftPage}
|