greeting.js

Download
javascript 13 lines 243 B
 1/**
 2 * 인사 μ»΄ν¬λ„ŒνŠΈ
 3 */
 4
 5export function greeting(name) {
 6    return `
 7        <div class="greeting">
 8            <h2>μ•ˆλ…•ν•˜μ„Έμš”, ${name}λ‹˜!</h2>
 9            <p>Webpack으둜 λΉŒλ“œλœ λͺ¨λ“ˆμž…λ‹ˆλ‹€.</p>
10        </div>
11    `;
12}