0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Next.js】Router機能について調べてみた

Posted at

Router機能とは?

てすとてすとてすとてすと

サンプルコード

<div className="mb-4 p-3 bg-[#F7F6F3] rounded-md">
  <h4 className="text-sm font-medium text-[#37352F] mb-2">含まれるブロックの種類:</h4>
  <div className="flex flex-wrap gap-2">
    {blockTypes[item.id]?.map((type, index) => (
      <span 
        key={index}
        className="px-2 py-1 bg-white rounded text-sm text-[#37352F] border border-[#E9E8E6]"
      >
        {type}
      </span>
    ))}
  </div>
</div>

💡 てすとてすてすと

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?