mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 09:11:38 +00:00
22 lines
530 B
TypeScript
22 lines
530 B
TypeScript
import Anchor from 'components/mdx/Anchor';
|
|
import Image from 'components/mdx/Image';
|
|
import Pre from 'components/mdx/Pre';
|
|
import RUACodepen from 'components/RUA/RUACodepen';
|
|
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,
|
|
RUACodepen,
|
|
};
|
|
|
|
export default components;
|