1
0
mirror of https://github.com/actix/actix-website synced 2025-06-30 08:44:27 +02:00

docs: enable shell-session syntax

This commit is contained in:
Rob Ede
2024-05-27 22:24:26 +01:00
parent 2aacdf2f70
commit a0a2da114d
4 changed files with 19 additions and 6 deletions

View File

@ -0,0 +1,11 @@
import RenderCodeBlock from "@theme/CodeBlock";
const ShellBlock = ({ children }) => {
return (
<RenderCodeBlock className={`language-console`}>
{children}
</RenderCodeBlock>
);
};
export default ShellBlock;