mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-06-16 17:56:39 +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
|