Add placeholder components to be worked on
This commit is contained in:
9
web/components/chat/ChatActionMessage.jsx
Normal file
9
web/components/chat/ChatActionMessage.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ChatMessage } from '../../interfaces/chat-message.model';
|
||||
|
||||
interface Props {
|
||||
message: ChatMessage;
|
||||
}
|
||||
|
||||
export default function ChatSystemMessage(props: Props) {
|
||||
return <div>Component goes here</div>;
|
||||
}
|
||||
9
web/components/chat/ChatContainer.tsx
Normal file
9
web/components/chat/ChatContainer.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ChatMessage } from '../../interfaces/chat-message.model';
|
||||
|
||||
interface Props {
|
||||
messages: ChatMessage[];
|
||||
}
|
||||
|
||||
export default function ChatContainer(props: Props) {
|
||||
return <div>Component goes here</div>;
|
||||
}
|
||||
5
web/components/chat/ChatModeratorNotification.tsx
Normal file
5
web/components/chat/ChatModeratorNotification.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
interface Props {}
|
||||
|
||||
export default function ChatModerationNotification(props: Props) {
|
||||
return <div>You are now a moderator notification component goes here</div>;
|
||||
}
|
||||
9
web/components/chat/ChatSocialMessage.jsx
Normal file
9
web/components/chat/ChatSocialMessage.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ChatMessage } from '../../interfaces/chat-message.model';
|
||||
|
||||
interface Props {
|
||||
message: ChatMessage;
|
||||
}
|
||||
|
||||
export default function ChatSocialMessage(props: Props) {
|
||||
return <div>Component goes here</div>;
|
||||
}
|
||||
9
web/components/chat/ChatSystemMessage.tsx
Normal file
9
web/components/chat/ChatSystemMessage.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ChatMessage } from '../../interfaces/chat-message.model';
|
||||
|
||||
interface Props {
|
||||
message: ChatMessage;
|
||||
}
|
||||
|
||||
export default function ChatSystemMessage(props: Props) {
|
||||
return <div>Component goes here</div>;
|
||||
}
|
||||
5
web/components/chat/ChatTextField.tsx
Normal file
5
web/components/chat/ChatTextField.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
interface Props {}
|
||||
|
||||
export default function ChatTextField(props: Props) {
|
||||
return <div>Component goes here</div>;
|
||||
}
|
||||
9
web/components/chat/ChatUserMessage.tsx
Normal file
9
web/components/chat/ChatUserMessage.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ChatMessage } from '../../interfaces/chat-message.model';
|
||||
|
||||
interface Props {
|
||||
message: ChatMessage;
|
||||
}
|
||||
|
||||
export default function ChatUserMessage(props: Props) {
|
||||
return <div>Component goes here</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user