mirror of
https://github.com/alrayyes/wiki.git
synced 2025-01-19 03:43:23 +00:00
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { QuartzComponentConstructor } from "./types"
|
|
|
|
function Spacer() {
|
|
return <div class="spacer"></div>
|
|
}
|
|
|
|
export default (() => Spacer) satisfies QuartzComponentConstructor
|