import * as React from 'react'; import { AkCodeBlock } from '@atlaskit/code'; export type Props = { children: string; className?: string; }; const getLanguageName = (className: string) => { return className.replace(/language-/, ''); }; export default ({ children, className }: Props) => ( );