This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box1.style.backgroundColor = "#FEEFD4"; | |
box1s.style.fontSize = "44px"; | |
document.querySelector('#box2').style.height = "138px"; | |
document.querySelector('#box2').style.width = "113px"; | |
document.querySelector('#box2s').style.width = "552px"; | |
document.querySelector('#box2s').style.height = "452px"; | |
const circleBox3 = document.createElement('div'); | |
circleBox3.className = 'circle'; | |
document.getElementById('box3').appendChild(circleBox3) | |
clearFinished = () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class UsersController < ApplicationController | |
before_action :user_params, :only [:create, :update] | |
before_action :user_find, :only [:shoe, :edit, :update, :destroy] | |
after_action :slack_notify, :only [:create, :update, :destroy] | |
def index | |
@users = User.all | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>React Practice</title> | |
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> | |
</head> | |
<body> |