- https://codepen.io/anon/pen/aMYmNN?editors=0010
- https://reactjs.org/docs/lifting-state-up.html
- need to concentrate 10 and 11
- celcius and franhite example
- https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/todos (vvI) (done)
- https://dev.to/achowba/building-a-modal-in-react-15hg (modal showing)
- <!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="modal fade in" id="myModal" role="dialog" style="display: block;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal-backdrop fade in"></div>
</body>
</html>
Friday, March 15, 2019
Need to practice
Subscribe to:
Post Comments (Atom)
Autoboxing and Unboxing
Autoboxing is the automatic conversion that the Java compiler makes between the primitive types and their corresponding object wrapper cl...
-
VPC endpoint enables creation of a private connection between VPC to supported AWS services and VPC endpoint services powered by Private...
-
What is VPC Take a small piece of AWS network and call it your own, control IP address ranges, routing patterns, tighten security etc. AWS...
-
A quick tip that helps me remember what they do - HostBinding('value') myValue; is exactly the same as [value]="myValue...
No comments:
Post a Comment