AcaMate_iOS/AcaMate/1. View/12. Main/125. Etc/TsCsView.swift
2025-02-13 16:05:37 +09:00

30 lines
758 B
Swift

//
// TsCsView.swift
// AcaMate
//
// Created by TAnine on 2/13/25.
//
import SwiftUI
struct TsCsView: View {
var body: some View {
EtcBoxView(title: "약관"){
VStack(spacing: 0) {
EtcCellView(title: "이용약관") {
// MARK: TO-DO
//
printLog("이용약관 이동")
}
DashedDivider()
EtcCellView(title: "개인정보 처리방침") {
// MARK: TO-DO
//
printLog("개인정보 처리방침 이동")
}
}
}
}
}
//