From f98bca02d61768826e8fa58b1172d72f37fd1b65 Mon Sep 17 00:00:00 2001 From: ludelanier Date: Wed, 10 Jan 2024 14:00:24 +0100 Subject: [PATCH] start historique page --- .../AllInApp/AllIn/Components/ReviewCard.swift | 18 ++++++++++++++++++ .../AllInApp/AllIn/Views/HistoricBetView.swift | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 Sources/AllInApp/AllIn/Components/ReviewCard.swift create mode 100644 Sources/AllInApp/AllIn/Views/HistoricBetView.swift diff --git a/Sources/AllInApp/AllIn/Components/ReviewCard.swift b/Sources/AllInApp/AllIn/Components/ReviewCard.swift new file mode 100644 index 0000000..14f621b --- /dev/null +++ b/Sources/AllInApp/AllIn/Components/ReviewCard.swift @@ -0,0 +1,18 @@ +// +// ReviewCard.swift +// AllIn +// +// Created by Lucas Delanier on 10/01/2024. +// + +import SwiftUI + +struct ReviewCard: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + ReviewCard() +} diff --git a/Sources/AllInApp/AllIn/Views/HistoricBetView.swift b/Sources/AllInApp/AllIn/Views/HistoricBetView.swift new file mode 100644 index 0000000..d7a3d03 --- /dev/null +++ b/Sources/AllInApp/AllIn/Views/HistoricBetView.swift @@ -0,0 +1,18 @@ +// +// HistoricBetView.swift +// AllIn +// +// Created by Lucas Delanier on 10/01/2024. +// + +import SwiftUI + +struct HistoricBetView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + HistoricBetView() +}