This is a test I love using Next.js
Let's start by looking at a complete implementation. It doesn't have all of the bells and whistles we'll add later, but it shows the fundamental idea.
Don't worry if you can't make much sense of it yet, we'll dig into it in this blog post!
Hello world!
Does this not work?
By why does it not work?
- Look
- At
- Me!
<div class="flag">
<div class="column" style="animation-delay: 0ms"></div>
<div class="column" style="animation-delay: 100ms"></div>
<div class="column" style="animation-delay: 200ms"></div>
<div class="column" style="animation-delay: 300ms"></div>
</div>
- This
- Should
- Be
const sum: number = 1 + 2;
function foo(bar: string) {
if (!bar) {
return null;
}
return (
<div>
<p>{bar}</p>
</div>
);
}