Add edit and delete actions to posts and comments (#125)

This commit is contained in:
Riccardo Graziosi
2022-06-22 10:17:42 +02:00
committed by GitHub
parent 07ca2a304a
commit bc15140512
52 changed files with 1495 additions and 481 deletions

View File

@@ -6,7 +6,7 @@ interface Props {
}
const Box = ({ customClass, children }: Props) => (
<div className={`box ${customClass}`}>
<div className={`box${customClass ? ' ' + customClass : ''}`}>
{children}
</div>
);