Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

03_ko.html

Blame
  • MakeDay2.jsx 343 B
    export default function MakeDay2() {
      const days = [];
      const date = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
    
      for (let i = 0; i < 7; i++) {
        days.push(<th className="table_head">{date[i]}</th>);
      }
    
      return (
        <thead>
          <tr>
            <th className="table_head tt"></th>
            {days}
          </tr>
        </thead>
      );
    }