• This project
    • Loading...
  • Sign in

HyeonJun Jeon / Extended-Calendar

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Extended-Calendar
  • src
  • components
  • GridRow.js
  • HyeonJun Jeon's avatar
    [Implement] Header component, Calendar grid · 7631ddab
    7631ddab
    HyeonJun Jeon authored 2022-05-25 03:49:57 +0900
GridRow.js 301 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import GridItem from "./GridItem";

const GridRow = () => {
  const renderItems = () => {
    const items = [];
    for (let i = 0; i < 7; i++) {
      items.push(<GridItem key={i} />);
    }
    return items;
  };

  return <div className="GridRow">{renderItems()}</div>;
};

export default GridRow;