mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-10-07 03:07:07 +00:00
📝 Docs: 修复 wwads (#3105)
This commit is contained in:
19
website/src/theme/Page/TOC/Container/index.tsx
Normal file
19
website/src/theme/Page/TOC/Container/index.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import React from "react";
|
||||
|
||||
import "./styles.css";
|
||||
import type { Props } from "@theme/Page/TOC/Container";
|
||||
import OriginTOCContainer from "@theme-original/Page/TOC/Container";
|
||||
|
||||
export default function TOCContainer({
|
||||
children,
|
||||
...props
|
||||
}: Props): JSX.Element {
|
||||
return (
|
||||
<OriginTOCContainer {...props}>
|
||||
{children}
|
||||
<div className="toc-ads-container">
|
||||
<div className="wwads-cn wwads-vertical toc-ads" data-id="281"></div>
|
||||
</div>
|
||||
</OriginTOCContainer>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user