Preview for detail

This commit is contained in:
Max Goedjen 2020-03-11 21:58:32 -07:00
parent 6584fc4f3d
commit caf4c81d18
No known key found for this signature in database
GPG Key ID: E58C21DD77B9B8E8
1 changed files with 6 additions and 0 deletions

View File

@ -55,3 +55,9 @@ struct SecretDetailView<SecretType: Secret>: View {
}
struct SecretDetailView_Previews: PreviewProvider {
static var previews: some View {
SecretDetailView(secret: Preview.Store(numberOfRandomSecrets: 1).secrets[0])
}
}