I hereby claim:
- I am deanvanniekerk on github.
- I am deanvanniekerk (https://keybase.io/deanvanniekerk) on keybase.
- I have a public key ASCjmtH0OaD_XREiYZPtokYCluDo0NoeKaetrqTI3hK-Owo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Home</title> | |
| </head> | |
| <body> | |
| <h1>Hello world</h1> | |
| <div id="root"></div> | |
| </body> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Home</title> | |
| </head> | |
| <body> | |
| <h1>Hello world</h1> | |
| <div id="root"></div> | |
| </body> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Home</title> | |
| </head> | |
| <body> | |
| <h1>Hello world</h1> | |
| <div id="root"></div> | |
| </body> |
| let element = document.getElementById('root'); | |
| counter(element); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Home</title> | |
| </head> | |
| <body> | |
| <h1>Hello world</h1> | |
| <div id="root"></div> | |
| </body> | |
| </html> |
| using System; | |
| using Microsoft.AspNetCore.Mvc; | |
| namespace alchemylab.Controllers | |
| { | |
| public class HomeController : Controller | |
| { | |
| public IActionResult Index() | |
| { | |
| return View(); |
| public class Startup | |
| { | |
| public void ConfigureServices(IServiceCollection services) | |
| { | |
| services.AddMvc(); | |
| } | |
| public void Configure(IApplicationBuilder app, IHostingEnvironment env) | |
| { | |
| if (env.IsDevelopment()) |