mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 01:01:38 +00:00
20 lines
464 B
TypeScript
20 lines
464 B
TypeScript
import Anchor from 'components/mdx/Anchor';
|
|
import Image from 'components/mdx/Image';
|
|
import Pre from 'components/mdx/Pre';
|
|
import RUACodeSandbox from 'components/RUA/RUACodeSandbox';
|
|
import RUASandpack from 'components/RUA/RUASandpack';
|
|
import Tab from 'components/RUA/tab';
|
|
import TabItem from 'components/RUA/tab/TabItem';
|
|
|
|
const components = {
|
|
RUASandpack,
|
|
a: Anchor,
|
|
pre: Pre,
|
|
Image,
|
|
Tab,
|
|
TabItem,
|
|
RUACodeSandbox,
|
|
};
|
|
|
|
export default components;
|