김재형

Add header to FileList component

.header {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.actions {
a {
margin: 0 4px;
......
......@@ -44,7 +44,13 @@ export function FileList() {
return (
<div>
{data.parent !== null && <h3>{data.name}</h3>}
<div className={styles.header}>
<div>{data.parent !== null && <h3>{data.name}</h3>}</div>
<div className={styles.actions}>
<a>파일 업로드</a>
<a>새 폴더</a>
</div>
</div>
<Table
rowKey="id"
columns={getColumns({
......