14 lines
195 B
Swift
14 lines
195 B
Swift
//
|
|
// String.swift
|
|
// Meta
|
|
//
|
|
// Created by david-swift on 09.06.24.
|
|
//
|
|
|
|
extension String {
|
|
|
|
/// A label for main content in a view storage.
|
|
static var mainContent: Self { "main" }
|
|
|
|
}
|