Skip to content

Instantly share code, notes, and snippets.

@justinnoel
justinnoel / README.md
Created November 12, 2022 12:34
Configuring Sessions in Remix for Cloudflare Pages
import SwiftUI
struct ContentView: View {
@State var path: [String] = []
func navigationButton(value: String) -> some View {
NavigationButton {
path.append(value)
} label: {
Text("NavigationButton")