-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a70a88a
commit 3b4c67e
Showing
5 changed files
with
42 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 9 additions & 11 deletions
20
acm-member-dashboard/src/components/Contribution/Contribution.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
import React from 'react' | ||
import React from "react"; | ||
import Tilt from "react-parallax-tilt"; | ||
import './Contribution.css' | ||
import "./Contribution.css"; | ||
|
||
const Contribution = () => { | ||
return ( | ||
<a href="https://github.com/ACM-Thapar/CS_COURSE_GUIDE"> | ||
<Tilt> | ||
<div className="cscourseguide"> | ||
CS_COURSE_GUIDE | ||
</div> | ||
</Tilt> | ||
<a href="https://github.com/ACM-Thapar/CS_COURSE_GUIDE" target="__blank"> | ||
<Tilt> | ||
<div className="cscourseguide">CS_COURSE_GUIDE</div> | ||
</Tilt> | ||
</a> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default Contribution | ||
export default Contribution; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import React from "react"; | ||
|
||
function Settings() { | ||
return <div></div>; | ||
} | ||
|
||
export default Settings; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters