react-count-up
Version:
React Component to simulate realtime count up
27 lines (23 loc) • 548 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>React Count Up</title>
</head>
<style>
body {
background-image: linear-gradient(120deg, #14d3e8, #1FA0A0, #102b3a);
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.count-up {
color: #fff;
font-size: 50px;
}
</style>
<body>
<div id="app" />
<script src="lib/index.js" type="text/javascript"></script>
</body>
</html>