taevas.xyz/src/Infos/Coding/index.tsx
Taevas cbc005b995 Move everything around in src (again)
To reflect the composition of the website with two distinct parts
(those being `Main` and `Infos`)
That way, it's much clearer what component belongs where
2025-02-17 17:57:03 +01:00

19 lines
363 B
TypeScript

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,
]}
/>
);
}