This commit is contained in:
Trey t
2023-06-25 16:53:38 -05:00
parent ad73c18bdc
commit f97faffb62
7 changed files with 42 additions and 15 deletions

View File

@@ -198,5 +198,15 @@ struct AddExerciseView: View {
return hasCorrectMuscles && hasCorrectEquipment
}
})
}
}
func setupFake() {
DataStore.shared.setupFakeData()
}
}
struct AddExerciseView_Previews: PreviewProvider {
static var previews: some View {
AddExerciseView(selectedWorkout: { _ in })
}
}