Moved numFormatter to utils

This commit is contained in:
strNophix 2022-10-04 17:51:21 +02:00
parent 5a7e37077a
commit d1c0ae0a15
3 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { FC } from 'react';
import { numFormatter } from '../lib/format';
import { numFormatter } from '../utils/format';
import { Stream } from '../types';
interface SideNavChannelProps {

View File

@ -3,7 +3,7 @@ import { ArrowRightIcon, HeartIcon, UserIcon } from '@heroicons/react/24/outline
import Button from '../components/Button';
import ChatMessage from '../components/ChatMessage';
import Input from '../components/Input';
import { numFormatter } from '../lib/format';
import { numFormatter } from '../utils/format';
import streams from '../placeholder/GetStreams';
function ChannelPage() {