19 lines
267 B
Swift
19 lines
267 B
Swift
//
|
|
// SeriesMainByGenreView.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 11/14/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct SeriesMainByGenreView: View {
|
|
var body: some View {
|
|
Text("시리즈 전체보기 장르별")
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
SeriesMainByGenreView()
|
|
}
|