Skip to content

Commit

Permalink
consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
rossrobino committed Feb 11, 2025
1 parent d9d843e commit 63e1f07
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions apps/docs/src/pages/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ _\*If you see a better way to write any of these examples or a framework that is

```astro
---
// Dialog.astro
// dialog.astro
import type { DialogAttributes } from "drab/dialog";
const attributes: DialogAttributes = {
Expand Down Expand Up @@ -109,7 +109,7 @@ declare namespace JSX {
### Solid

```tsx
// dialog.jsx
// dialog.tsx
import { onMount } from "solid-js";

export default function Dialog() {
Expand Down Expand Up @@ -139,6 +139,7 @@ declare module "solid-js" {
### Svelte

```svelte
<!-- dialog.svelte -->
<script lang="ts">
import { onMount } from "svelte";
import type { DialogAttributes } from "drab/dialog";
Expand All @@ -158,7 +159,7 @@ declare module "solid-js" {
### Vue

```vue
<!-- Dialog.vue -->
<!-- dialog.vue -->
<script setup>
onMounted(async () => {
await import("drab/dialog/define");
Expand Down

0 comments on commit 63e1f07

Please sign in to comment.