aboutsummaryrefslogtreecommitdiff
path: root/Sources/NorgUI/Views/Blocks/CodeBlockView.swift
blob: 2f1ebfbb31f1b4cfba1e0065cae1a9164227ace3 (plain)
1
2
3
4
5
6
7
8
9
10
import SwiftUI

struct CodeBlockView: View {
  let language: String?
  let code: String

  var body: some View {
    VerbatimBlock(label: language, content: code)
  }
}