17 lines
218 B
Swift
17 lines
218 B
Swift
//
|
|
// GraphView.swift
|
|
// Feels
|
|
//
|
|
// Created by Trey Tartt on 1/8/22.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import CoreData
|
|
|
|
struct GraphView: View {
|
|
var body: some View {
|
|
Text("this is a graph")
|
|
}
|
|
}
|