This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup lang="ts"> | |
import { computed } from 'vue' | |
import { groupBy } from 'lodash-es' | |
import RecipientsDisplay from '@/components/RecipientsDisplay.vue' | |
import DateDisplay from '@/components/DateDisplay.vue' | |
import TimeDisplay from '@/components/TimeDisplay.vue' | |
import type { Email } from '@/types/Email' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useMemo, type PropsWithChildren } from 'react' | |
import styled from 'styled-components' | |
import { groupBy } from 'lodash-es' | |
import type { Email } from '../types/Email' | |
import RecipientsDisplay from './RecipientsDisplay' | |
import DateDisplay from './DateDisplay' | |
import TimeDisplay from './TimeDisplay' | |
type AuditTableProps = PropsWithChildren<{ emails: Email[] }> |