/* global React */ function BlogV6() { const posts = (window.POSTS || []).slice().sort((a, b) => b.date.localeCompare(a.date)); return (
Contact Browse visuals
Notes from the workshop

The blog.

Technical writing on chart types, Power BI internals, and the visuals we build.

{posts.map((post) => (
{post.category}
{new Date(post.date).toLocaleDateString("en-US", { month: "short", day: "numeric", year: "numeric" })}

{post.title}

{post.excerpt}

))}
); } window.BlogV6 = BlogV6;