-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspread.html
More file actions
65 lines (58 loc) · 1.52 KB
/
spread.html
File metadata and controls
65 lines (58 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/table.css"/>
</head>
<body>
<div id="app"></div>
</body>
</html>
<script src="js/react.min.js"></script>
<script src="js/react-dom.min.js"></script>
<script src="js/browser.js"></script>
<script type="text/babel">
var FancyLink = React.createClass({
render: function() {
/*
var attr = {
href: 'http://example.org',
target: '_blank',
};
// return <a {...attr}>Hello</a>;
return (
<a
href={attr.href}
target={attr.target}>
Hello
</a>
);
*/
/*
switch(this.props.size) {
// do something based on the `size` prop
}
var attribs = Object.assign({}, this.props); // shallow clone
delete attribs.size;
*/
var {size, ...attribs} = this.props;
switch(size) {
// do something based on the `size` prop
}
return <a {...attribs}>{this.props.children}</a>;
}
});
ReactDOM.render(
<div>
<FancyLink
href="http://example.org"
style={{color: "red"}}
target="_blank"
size="medium">
Hello
</FancyLink>
</div>,
document.getElementById('app')
);
</script>