12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
"use client";
|
|
|
|
import { IframeContainer } from "@/components/shared/iframe-container";
|
|
|
|
export function GitlabFrame() {
|
|
return (
|
|
<IframeContainer
|
|
src="https://git.slm-lab.net"
|
|
title="GitLab"
|
|
/>
|
|
);
|
|
}
|