* feat: demo mode * chore: update i18n for demo mode * chore: re-use demo design * fix: update snapshots
24 lines
481 B
Plaintext
24 lines
481 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`DemoAlert component snapshot 1`] = `
|
|
<AlertModal
|
|
footerNode={
|
|
<ActionRow>
|
|
<Button
|
|
onClick={[MockFunction props.onClose]}
|
|
variant="primary"
|
|
>
|
|
Confirm
|
|
</Button>
|
|
</ActionRow>
|
|
}
|
|
isOpen={true}
|
|
onClose={[MockFunction props.onClose]}
|
|
title="Demo submit prevented"
|
|
>
|
|
<p>
|
|
Grade submission is disabled in the Demo mode of the new ORA Staff Grader.
|
|
</p>
|
|
</AlertModal>
|
|
`;
|