This commit is contained in:
Stefan Pejcic
2024-09-18 16:30:56 +02:00
parent ae4c612987
commit b8c5011b76
1349 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import React from "react";
import clsx from "clsx";
export const CommonCodeBlockContainer = ({ as: As, ...props }) => {
return <As {...props} className={clsx(props.className)} />;
};