Export createTransitionScope from the runtime (#7936)

This commit is contained in:
Matthew Phillips 2023-08-03 14:41:08 -04:00 committed by GitHub
parent 8544a6318f
commit 4b6deda360
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Export createTransitionScope for the runtime

View file

@ -36,7 +36,7 @@ export type {
ComponentSlots,
RenderInstruction,
} from './render/index.js';
export { renderTransition } from './transition.js';
export { renderTransition, createTransitionScope } from './transition.js';
import { markHTMLString } from './escape.js';
import { addAttribute, Renderer } from './render/index.js';