templates
templates copied to clipboard
Migrate the `components` template from `lazy_static` to use LazyCell or LazyLock
lazy_static is largely obsolete in favour of options in the standard library like LazyCell and LazyLock. I suggest that we migrate the components template to use LazyCell (or LazyLock if thread safety is needed) instead.