taevas.xyz/src/Infos/Coding/index.tsx

20 lines
363 B
TypeScript
Raw Normal View History

import React from "react";
import Info from "../Info.js";
import GitHub from "./GitHub.js";
import GitLab from "./GitLab.js";
export default function Coding() {
const github = <GitHub key={"github"}/>;
const gitlab = <GitLab key={"gitlab"}/>;
return (
<Info
type="Coding"
websites={[
github,
gitlab,
]}
/>
);
}