This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 💡 「お題」募集結果 のコンポーネントをリファクタリングした
- Loading branch information
1 parent
795b4f1
commit 49a9a94
Showing
2 changed files
with
50 additions
and
41 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
components/events-in-event/novels-on-themes-application-results/ResultThemeList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import type { NextPage } from 'next' | ||
|
||
export const ResultThemeList: NextPage = () => { | ||
return ( | ||
<> | ||
<h2 className="text-xl font-bold pb-4">募集結果</h2> | ||
<div className="text-base text-left pb-0"> | ||
<div className="text-base text-left pb-4"> | ||
「お題」募集でご応募いただきましたお題の一覧です。 | ||
<br /> | ||
ご応募ありがとうございました! | ||
</div> | ||
|
||
<ul className="list-disc pl-6 pr-2"> | ||
<li className="pb-2">特訓</li> | ||
<li className="pb-2">買い物</li> | ||
<li className="pb-2">ひみつだよ</li> | ||
<li className="pb-2">大好き</li> | ||
<li className="pb-2">信じてる</li> | ||
<li className="pb-2">家</li> | ||
<li className="pb-2">思い出</li> | ||
<li className="pb-2">願い</li> | ||
<li className="pb-2">昔話</li> | ||
<li className="pb-2">紋章</li> | ||
<li className="pb-2">「そういえば」</li> | ||
<li className="pb-2">記念(総選挙十周年記念にちなんで)</li> | ||
<li className="pb-2"> | ||
あつい(暑い、熱い、厚い、「あ、つい」などなんでも) | ||
</li> | ||
<li className="pb-2">水</li> | ||
<li className="pb-2">応援</li> | ||
<li className="pb-2">夜空</li> | ||
<li className="pb-2">湖</li> | ||
<li className="pb-2">釣り</li> | ||
<li className="pb-2">チンチロリン</li> | ||
<li className="pb-2">休息</li> | ||
<li className="pb-2">決意</li> | ||
<li className="pb-2">友</li> | ||
<li className="pb-2">始まり</li> | ||
<li className="pb-2">終わり</li> | ||
<li className="pb-2">料理勝負</li> | ||
<li className="pb-2">スイーツ</li> | ||
</ul> | ||
</div> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters