import React from "react"; import { Row, Card } from "react-bootstrap"; import Clock from "react-live-clock"; import "../App.css"; function TimeNow() { const cardstyled = { margin: "auto", padding: "1em", display: "flex", justifyContent: "center", width: "100%", borderWidth: "3px", borderRadius: "20px", borderColor: "rgb(110, 189, 142)", color: "#04AB70", }; return (

현재시각


); } export default TimeNow;