update spin demo

pull/6479/head
afc163 8 years ago
parent 7889832280
commit 64466a79cb

@ -96,15 +96,19 @@ exports[`renders ./components/spin/demo/nested.md correctly 1`] = `
</div>
</div>
</div>
Loading state
<span
class="ant-switch"
tabindex="0"
<div
style="margin-top:16px;"
>
Loading state
<span
class="ant-switch-inner"
/>
</span>
class="ant-switch"
tabindex="0"
>
<span
class="ant-switch-inner"
/>
</span>
</div>
</div>
`;

@ -21,18 +21,19 @@ class Card extends React.Component {
toggle = (value) => {
this.setState({ loading: value });
}
render() {
const container = (
<Alert
message="Alert message title"
description="Further details about the context of this alert."
type="info"
/>
);
render() {
return (
<div>
<Spin spinning={this.state.loading}>{container}</Spin>
Loading state<Switch checked={this.state.loading} onChange={this.toggle} />
<Spin spinning={this.state.loading}>
<Alert
message="Alert message title"
description="Further details about the context of this alert."
type="info"
/>
</Spin>
<div style={{ marginTop: 16 }}>
Loading state<Switch checked={this.state.loading} onChange={this.toggle} />
</div>
</div>
);
}

Loading…
Cancel
Save