Remove user menu when chat is not available

This commit is contained in:
Gabe Kangas
2022-05-26 11:08:37 -07:00
parent 715504eb69
commit b3407cbdea
4 changed files with 34 additions and 9 deletions

View File

@@ -15,7 +15,14 @@ const Template: ComponentStory<typeof Header> = args => (
</RecoilRoot>
);
export const Example = Template.bind({});
Example.args = {
export const ChatAvailable = Template.bind({});
ChatAvailable.args = {
name: 'Example Stream Name',
chatAvailable: true,
};
export const ChatNotAvailable = Template.bind({});
ChatNotAvailable.args = {
name: 'Example Stream Name',
chatAvailable: false,
};