21 lines
415 B
Swift
21 lines
415 B
Swift
//
|
|
// FlashCardLessonResultsView.swift
|
|
// Toki Trainer
|
|
//
|
|
// Created by Avery Ada Pace on 11/8/21.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct FlashCardLessonResultsView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
struct FlashCardLessonResultsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
FlashCardLessonResultsView()
|
|
}
|
|
}
|