The difference between const and readonly in C#
const
values need to be assigned right away, whereas readonly
values can be computed dynamically.
readonly
s act more like references to a memory location, whereas const
s are baked in values.
Helpful: this Stackoverflow post
Bonus TIL - UI components that you can download on npm: https://21st.dev/