groceries/Groceries/Common/_TurboStream.cshtml
2023-07-23 20:00:53 +01:00

13 lines
238 B
Plaintext

<turbo-stream action="@ViewBag.Action" target="@ViewBag.Target">
@if (ViewBag.Action != "remove")
{
<template>
@RenderBody()
</template>
}
else
{
IgnoreBody();
}
</turbo-stream>