8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
import { showPoem, defaultPoem } from "./lib/poem.js";
|
|
|
|
// 使用默认古诗
|
|
showPoem(defaultPoem);
|
|
|
|
// 自定义古诗
|
|
// showPoem(["床前明月光", "疑是地上霜", "举头望明月", "低头思故乡"]);
|