import React from 'react' import { Column, Icon, Row, Text } from '../../atoms' import styles from './styles.module.css' interface PlaceholderProps { onClick?: () => void } const arrayIcons = ['IconFolder'] export const Placeholder: React.FC = ({ onClick = () => { } }) => { return (
) }