mirror of
https://github.com/cranci1/Sora.git
synced 2026-03-13 14:35:59 +00:00
16 lines
242 B
Swift
16 lines
242 B
Swift
//
|
|
// LibraryView.swift
|
|
// Sora-JS
|
|
//
|
|
// Created by Francesco on 05/01/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct LibraryView: View {
|
|
var body: some View {
|
|
Text("Library View")
|
|
.font(.largeTitle)
|
|
.padding()
|
|
}
|
|
}
|