import { MultipleCodeBlock } from 'ui-patterns/MultipleCodeBlock' import type { StepContentProps } from '@/components/interfaces/ConnectSheet/Connect.types' const ContentFile = ({ projectKeys }: StepContentProps) => { const files = [ { name: 'Briven.swift', language: 'swift', code: ` import Foundation import Briven let briven = BrivenClient( brivenURL: URL(string: "${projectKeys.apiUrl ?? 'your-project-url'}")!, brivenKey: "${projectKeys.publishableKey ?? ''}" ) `, }, { name: 'Todo.swift', language: 'swift', code: ` import Foundation struct Todo: Identifiable, Decodable { var id: Int var name: String } `, }, { name: 'ContentView.swift', language: 'swift', code: ` import Briven import SwiftUI struct ContentView: View { @State var todos: [Todo] = [] var body: some View { NavigationStack { List(todos) { todo in Text(todo.name) } .navigationTitle("Todos") .task { do { todos = try await briven.from("todos").select().execute().value } catch { debugPrint(error) } } } } } #Preview { ContentView() } `, }, ] return } export default ContentFile