diff options
author | 2021-11-02 21:21:54 +0000 | |
---|---|---|
committer | 2021-11-02 21:21:54 +0000 | |
commit | c6ee6a5555d1d8fcce1ad087ee26f0b554448bb2 (patch) | |
tree | 2158dc1d3c1ec2ff55368bcdab213bb07f607c17 | |
parent | 11ee158ad50f515dadf66cef1a0ea9a2672e487c (diff) | |
download | astro-c6ee6a5555d1d8fcce1ad087ee26f0b554448bb2.tar.gz astro-c6ee6a5555d1d8fcce1ad087ee26f0b554448bb2.tar.zst astro-c6ee6a5555d1d8fcce1ad087ee26f0b554448bb2.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/src/runtime/server/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/runtime/server/index.ts b/packages/astro/src/runtime/server/index.ts index 40accdfce..ea4a50ed9 100644 --- a/packages/astro/src/runtime/server/index.ts +++ b/packages/astro/src/runtime/server/index.ts @@ -90,7 +90,7 @@ export async function renderSlot(_result: any, slotted: string, fallback?: any) return fallback; } -export const Fragment = Symbol("Astro.Fragment"); +export const Fragment = Symbol('Astro.Fragment'); export async function renderComponent(result: SSRResult, displayName: string, Component: unknown, _props: Record<string | number, any>, slots: any = {}) { Component = await Component; |