2021-11-09 18:17:22 +00:00
|
|
|
//
|
2021-12-03 18:58:18 +00:00
|
|
|
// FlashCardLessonResultsView.swift
|
2021-11-09 18:17:22 +00:00
|
|
|
// Toki Trainer
|
|
|
|
//
|
|
|
|
// Created by Avery Ada Pace on 11/8/21.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
2021-12-03 18:58:18 +00:00
|
|
|
struct FlashCardLessonResultsView: View {
|
2021-11-09 18:17:22 +00:00
|
|
|
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 {
|
2021-11-09 18:17:22 +00:00
|
|
|
static var previews: some View {
|
2021-12-03 18:58:18 +00:00
|
|
|
FlashCardLessonResultsView()
|
2021-11-09 18:17:22 +00:00
|
|
|
}
|
|
|
|
}
|