roadmap/quartz/components/Spacer.tsx

8 lines
180 B
TypeScript
Raw Normal View History

2023-06-12 06:46:38 +00:00
import { QuartzComponentConstructor } from "./types"
function Spacer() {
2023-06-08 05:27:32 +00:00
return <div class="spacer"></div>
}
2023-06-12 06:46:38 +00:00
export default (() => Spacer) satisfies QuartzComponentConstructor