| 12345678910111213141516171819202122232425262728293031323334 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[` 1`] = `
- <Alert
- className="foo-alert"
- />
- `;
- exports[`<Alert /> render() should be visible renders the alert 1`] = `
- <Alert
- className="foo-alert"
- >
- <Message
- className="foo-alert"
- onDismiss={[Function]}
- >
- <div
- className="ui message foo-alert"
- >
- <Icon
- as="i"
- name="close"
- onClick={[Function]}
- >
- <i
- aria-hidden="true"
- className="close icon"
- onClick={[Function]}
- />
- </Icon>
- </div>
- </Message>
- </Alert>
- `;
|