mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-15 02:33:50 +08:00
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
import React from 'react';
|
|
import SidebarAd from '@site/src/components/SidebarAd';
|
|
|
|
export default function InDocAd() {
|
|
return (
|
|
<div className="padding-top--lg">
|
|
<SidebarAd position="in_doc" />
|
|
</div>
|
|
);
|
|
}
|