export interface IReaction {
	_id: string;
	emoji: string;
	usernames: string[];
	names: string[];
}