import { Card, Spacer, Grid, Divider, Link, Text, Input } from "@geist-ui/core" import post from "../post" import ShiftBy from "../shift-by" import VisibilityBadge from "../visibility-badge" const FilenameInput = ({ title }: { title: string }) => const ListItem = ({ post }: { post: any }) => { return (
  • {post.title} {new Date(post.createdAt).toLocaleDateString()} {post.files.length === 1 ? "1 file" : `${post.files.length} files`} {post.files.map((file: any) => { return })}
  • ) } export default ListItem