Skip to content

Commit

Permalink
Make PR comment into a code comment, for posterity
Browse files Browse the repository at this point in the history
  • Loading branch information
amy-at-kickstarter committed Feb 12, 2024
1 parent 96e48f2 commit 86a0803
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public struct PaginationExampleView: View {
@StateObject private var viewModel = PaginationExampleViewModel()

public var body: some View {
//Note that PaginationExampleProjectList is decoupled from the view model;
//all the information it needs is passed in via bindings.
//This makes it easy to write a preview!
// Note that PaginationExampleProjectList is decoupled from the view model;
// all the information it needs is passed in via bindings.
// This makes it easy to write a preview!
PaginationExampleProjectList(
projectIdsAndTitles: $viewModel.projectIdsAndTitles,
showProgressView: $viewModel.showProgressView,
Expand Down

0 comments on commit 86a0803

Please sign in to comment.