MCPcopy Create free account
hub / github.com/pollinations/pollinations / SkeletonMessage

Function SkeletonMessage

apps/chat/src/components/SkeletonUI.jsx:3–14  ·  view source on GitHub ↗
({ isUser = false })

Source from the content-addressed store, hash-verified

1import "./styles/SkeletonUI.css";
2
3const SkeletonMessage = ({ isUser = false }) => {
4 return (
5 <div className={`skeleton-message ${isUser ? "user" : "assistant"}`}>
6 <div className="skeleton-avatar"></div>
7 <div className="skeleton-content">
8 <div className="skeleton-line"></div>
9 <div className="skeleton-line short"></div>
10 <div className="skeleton-line"></div>
11 </div>
12 </div>
13 );
14};
15
16const _SkeletonChat = () => {
17 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected