Refactor: removed default exports.

This commit is contained in:
Mike Cao 2025-02-13 22:53:25 -08:00
parent cd944e14ce
commit f83a12d6cd
343 changed files with 555 additions and 1046 deletions

View file

@ -1,9 +1,9 @@
import { GridTable, GridColumn, Icon } from 'react-basics';
import { useMessages, useTeamUrl, useTimezone } from '@/components/hooks';
import Empty from '@/components/common/Empty';
import Avatar from '@/components/common/Avatar';
import { Empty } from '@/components/common/Empty';
import { Avatar } from '@/components/common/Avatar';
import Link from 'next/link';
import Icons from '@/components/icons';
import { Icons } from '@/components/icons';
export function EventsTable({ data = [] }) {
const { formatTimezoneDate } = useTimezone();
@ -40,5 +40,3 @@ export function EventsTable({ data = [] }) {
</GridTable>
);
}
export default EventsTable;