DevNotes – 005
Fire and forget template for C#/.NET to run something that you don't need to wait on and don't care about the results.
Task.Run(() =>
{
//code goes here
});
In ReactJS, if ESLint says you cannot use inline arrow functions to pass in props in JSX, a solution is to wrap them with the useCallback
hook.
Reference: https://stackoverflow.com/a/36677798/5041911
Modals — can be used to add dialog or popup info boxes on your ReactJS app.
So using this library actually helped me solve my Azure Application Insights logging issue. The issue being, since I had a dateOfBirth
object in my formData
object, app insights would save it as an object, as opposed to something like dateOfBirth: 2024-04-16
. The solution was to flatten the formData
object so it will get logged properly in Azure App Insights.
Rendering the HTML string in React — short tutorial on how to render an HTML string in ReactJS/Gatsby.
Series: #DevNotes Tags: #CSharp #DotNet #Template #ReactJS #Azure #ApplicationInsights #Gatsby
Discuss... or leave a comment below.