Commit 1bde9354 by Yutaka Kobayashi

不要ファイル削除

1 parent 998da855
Showing with 0 additions and 21 deletions
import { Fade } from "./fadeIn.js";
// クラス
class Second {
constructor() {
new Fade();
}
}
// 関数
const second = () => {
new Fade();
};
document.addEventListener("DOMContentLoaded", () => {
// クラス
new Second();
// 関数Ç
second();
});
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!