20 lines
387 B
Plaintext
20 lines
387 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`SelectSessionButton default render 1`] = `
|
|
<ActionButton
|
|
disabled={false}
|
|
onClick={[MockFunction mockOpenSessionModal]}
|
|
>
|
|
Select Session
|
|
</ActionButton>
|
|
`;
|
|
|
|
exports[`SelectSessionButton disabled states 1`] = `
|
|
<ActionButton
|
|
disabled={true}
|
|
onClick={[MockFunction mockOpenSessionModal]}
|
|
>
|
|
Select Session
|
|
</ActionButton>
|
|
`;
|