Friday, March 15, 2019

Need to practice

  1. https://codepen.io/anon/pen/aMYmNN?editors=0010
  2. https://reactjs.org/docs/lifting-state-up.html
  3. need to concentrate 10 and 11
  4. celcius and franhite example
  5. https://codesandbox.io/s/github/reduxjs/redux/tree/master/examples/todos (vvI) (done)
  6. https://dev.to/achowba/building-a-modal-in-react-15hg (modal showing)
    1. <!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>

No comments:

Post a Comment

Autoboxing and Unboxing

  Autoboxing  is the automatic conversion that the Java compiler makes between the primitive types and their corresponding object wrapper cl...