Greatly simplifies shapes

This commit is contained in:
Steve Ruiz 2021-05-12 22:11:17 +01:00
parent 32082492d1
commit 3d52d9e9d2
18 changed files with 438 additions and 610 deletions

View file

@ -12,7 +12,7 @@ export default function StatusBar() {
return (
<StatusBarContainer>
<States>{active.join(" | ")}</States>
<Section>{active.join(" | ")}</Section>
<Section>| {log}</Section>
<Section title="Renders | Time">
{count} | {time.toString().padStart(3, "0")}
@ -45,8 +45,6 @@ const Section = styled("div", {
overflow: "hidden",
})
const States = styled("div", {})
function useRenderCount() {
const rTime = useRef(Date.now())
const rCounter = useRef(0)