Layouts

聚光灯

聚光灯

一种类似标签页的布局。非常适合展示功能列表或步骤,并在侧边显示代码块。

A Game of Thrones

The first book in the A Song of Ice and Fire series by George R.R. Martin.

A Clash of Kings

The second book in the series.

A Storm of Swords

The third book.

A Feast for Crows

The fourth book, explores the aftermath of the wars.

const houses = [
"Stark",
"Lannister",
"Baratheon",
"Targaryen",
]
const winner =
houses[
Math.floor(
Math.random() * houses.length,
)
]
console.log(`Iron Throne: ${winner}`)