tsconfig, core

This commit is contained in:
Max Peintner
2023-04-03 15:38:50 +02:00
parent f9299ad990
commit 987784c1a0
32 changed files with 290 additions and 747 deletions

View File

@@ -1,25 +0,0 @@
'use client';
import { useCountUp } from 'use-count-up';
const CountUp = ({
start,
end,
duration = 1,
}: {
start: number;
end: number;
duration?: number;
}) => {
const { value } = useCountUp({
isCounting: true,
end,
start,
duration,
decimalPlaces: 1,
});
return <span>{value}</span>;
};
export default CountUp;