-
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.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
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,30 @@ | ||
export default { | ||
title: "Galleries/Chat", | ||
}; | ||
|
||
const avatarImage = require("./assets/avatar_photo.jpg"); | ||
|
||
const Template = () => { | ||
return ` | ||
<div class="container max-w-2xl"> | ||
<div class="mb-4 flex"> | ||
<div class="avatar flex-shrink-0 mr-4"> | ||
<a href="#"> | ||
<img src="${avatarImage}" alt="城田 亜利沙" /> | ||
</a> | ||
</div> | ||
<div> | ||
<div class="flex items-center mb-2"> | ||
<div class="font-bold mr-4"><a href="#">城田 亜利沙</a></div> | ||
<div class="text-xs">9:15</div> | ||
</div> | ||
<div class="balloon"> | ||
あっという間の時間でしたが困難の多かった東京オリンピックの一番最後の式典で選手の方々、関係者の方々の労をねぎらう役目を頂けて光栄でした | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
`; | ||
}; | ||
|
||
export const Default = Template.bind({}); |