mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-01-14 22:18:43 +00:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import { QuartzComponentConstructor } from "./types"
|
|
|
|
function Spacer() {
|
|
return <div class="spacer"></div>
|
|
}
|
|
|
|
export default (() => Spacer) satisfies QuartzComponentConstructor
|