mirror of
https://github.com/meshtastic/web.git
synced 2026-05-04 20:56:07 -04:00
13 lines
259 B
TypeScript
13 lines
259 B
TypeScript
import React from 'react';
|
|
|
|
interface TimelineItemProps {
|
|
time: number;
|
|
color: string;
|
|
}
|
|
|
|
const TimelineItem = (props: TimelineItemProps) => {
|
|
return <div className={`rounded-full h-6 w-6 bg-${props.color}`}>Test</div>;
|
|
};
|
|
|
|
export default TimelineItem;
|