Merged in feat/sw-2871-booking-flow-envs (pull request #2483)

feat(SW-2871): Add env setup to booking-flow package

* Add env setup to booking-flow package

* Add missing dep

* Really fix it..


Approved-by: Linus Flood
This commit is contained in:
Anton Gunnarsson
2025-07-01 08:27:48 +00:00
parent c41b2314bf
commit 9426f4b1ac
4 changed files with 28 additions and 2 deletions

View File

@@ -1,9 +1,13 @@
import { Typography } from "@scandic-hotels/design-system/Typography"
import { env } from "../env/server"
const tempEnv = env.FOO
export function Temp() {
return (
<Typography variant="Body/Lead text">
<p>Tjena</p>
<p>Tjena {tempEnv}</p>
</Typography>
)
}