Skip to content
Snippets Groups Projects
Select Git revision
  • 4add93e51773f9d08f334b6ac7e8346d170376f3
  • main default protected
2 results

partRepository.js

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>
      );
    }