mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 01:01:38 +00:00
22 lines
535 B
TypeScript
22 lines
535 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/rua-codepen';
|
|
import RUACodeSandbox from 'components/rua/rua-code-sandbox';
|
|
import RUASandpack from 'components/rua/rua-sandpack';
|
|
import Tab from 'components/rua/tab';
|
|
import TabItem from 'components/rua/tab/tab-item';
|
|
|
|
const components = {
|
|
RUASandpack,
|
|
a: Anchor,
|
|
pre: Pre,
|
|
Image,
|
|
Tab,
|
|
TabItem,
|
|
RUACodeSandbox,
|
|
RUACodepen,
|
|
};
|
|
|
|
export default components;
|