mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-06 18:31:00 +00:00
14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
![]() |
import React from 'react';
|
||
|
import GithubContributionChart from '@/components/charts/GithubContributionChart';
|
||
|
|
||
|
const Testr = () => {
|
||
|
return (
|
||
|
<div className="container mx-auto p-4">
|
||
|
<GithubContributionChart username="austinkelsay" />
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Testr;
|
||
|
|