rizaldy.club/quartz/components/Spacer.tsx

8 lines
180 B
TypeScript
Raw Normal View History

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