mirror of
https://github.com/027xiguapi/code-box.git
synced 2026-05-12 05:07:40 +00:00
20 lines
342 B
TypeScript
20 lines
342 B
TypeScript
import Cnblogs from "./cnblogs"
|
|
import Csdn from "./csdn"
|
|
import Custom from "./custom"
|
|
import Jb51 from "./jb51"
|
|
import Jianshu from "./jianshu"
|
|
import Zhihu from "./zhihu"
|
|
|
|
export default function Content() {
|
|
return (
|
|
<>
|
|
<Csdn />
|
|
<Zhihu />
|
|
<Jianshu />
|
|
<Jb51 />
|
|
<Cnblogs />
|
|
<Custom />
|
|
</>
|
|
)
|
|
}
|