TokiTrainer/Toki Trainer/Views/FlashCardLessonResultsView.swift

21 lines
415 B
Swift
Raw Normal View History

//
2021-12-03 18:58:18 +00:00
// FlashCardLessonResultsView.swift
// Toki Trainer
//
// Created by Avery Ada Pace on 11/8/21.
//
import SwiftUI
2021-12-03 18:58:18 +00:00
struct FlashCardLessonResultsView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
2021-12-03 18:58:18 +00:00
struct FlashCardLessonResultsView_Previews: PreviewProvider {
static var previews: some View {
2021-12-03 18:58:18 +00:00
FlashCardLessonResultsView()
}
}