Skip to content

Commit

Permalink
feat: Updated src/components/About/Github.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 15, 2024
1 parent b55f1dd commit 61ad8f8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/About/Github.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
import React from "react";
import React, { useState } from "react";
import GitHubCalendar from "react-github-calendar";
import { Row } from "react-bootstrap";
import { githubUsername } from "../data";
import { githubUsername } from "../data";

function Github() {
const [newGitHubUsername, setNewGitHubUsername] = useState("validGitHubUsername");
return (
<Row style={{ justifyContent: "center", paddingBottom: "10px" }}>
<h1 className="project-heading" style={{ paddingBottom: "20px" }}>
Days I <strong className="purple">Code</strong>
</h1>
<GitHubCalendar
username={githubUsername}
username={"newGitHubUsername"}
blockSize={15}
blockMargin={5}
colorScheme="dark"
Expand Down

0 comments on commit 61ad8f8

Please sign in to comment.