mirror of
https://github.com/logos-co/roadmap.git
synced 2025-02-10 23:26: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
|