2024-05-04 19:14:18 +02:00
|
|
|
import React from "react";
|
|
|
|
import Info from "../Info.js";
|
2025-02-17 17:57:03 +01:00
|
|
|
import GitHub from "./GitHub.js";
|
|
|
|
import GitLab from "./GitLab.js";
|
2024-05-04 19:14:18 +02:00
|
|
|
|
|
|
|
export default function Coding() {
|
|
|
|
const github = <GitHub key={"github"}/>;
|
|
|
|
const gitlab = <GitLab key={"gitlab"}/>;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Info
|
|
|
|
type="Coding"
|
|
|
|
websites={[
|
|
|
|
github,
|
|
|
|
gitlab,
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|