added spectre css

This commit is contained in:
2021-07-27 19:24:52 +02:00
parent 2aea95c6ab
commit abbcaf9166
9 changed files with 93 additions and 37 deletions

View File

@@ -8,9 +8,14 @@ interface Props {
const FileElement: React.FC<Props> = (props) => {
return (
<div>
📄 {props.file.name}
</div>
<>
<td>
📄
</td>
<td>
{props.file.name}
</td>
</>
)
}