mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-28 15:27:10 +02:00
Sessions (#162)
This commit is contained in:
parent
1d7bcddf1b
commit
5c991d7011
83 changed files with 2463 additions and 1178 deletions
|
@ -5,7 +5,7 @@ import { useTimeoutFn } from "react-use";
|
|||
|
||||
import DateCard from "../date-card";
|
||||
import Score from "../poll/desktop-poll/score";
|
||||
import UserAvater from "../poll/user-avatar";
|
||||
import UserAvatar from "../poll/user-avatar";
|
||||
import VoteIcon from "../poll/vote-icon";
|
||||
|
||||
const sidebarWidth = 180;
|
||||
|
@ -87,14 +87,11 @@ const PollDemo: React.VoidFunctionComponent = () => {
|
|||
className="flex shrink-0 items-center px-4"
|
||||
style={{ width: sidebarWidth }}
|
||||
>
|
||||
<UserAvater
|
||||
className="mr-2"
|
||||
<UserAvatar
|
||||
color={participant.color}
|
||||
name={participant.name}
|
||||
showName={true}
|
||||
/>
|
||||
<span className="truncate" title={participant.name}>
|
||||
{participant.name}
|
||||
</span>
|
||||
</div>
|
||||
<div className="flex">
|
||||
{options.map((_, i) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue