feat: Adds docker support to start building views.

This commit is contained in:
2025-12-30 13:41:25 -05:00
parent 79ea188e07
commit 2bbff896c9
11 changed files with 174 additions and 10 deletions

View File

@@ -38,6 +38,18 @@ extension ViewController {
}
}
extension ViewController: TestDependencyKey {
extension ViewController: DependencyKey {
public static let testValue = Self()
// FIX: Fix.
public static let liveValue = Self(
view: { _ in
return MainPage {
div {
h1 { "It works!" }
h2 { "Browser sync works!" }
}
}
}
)
}