WIP Frontend development.

This commit is contained in:
Ahmed Bouhuolia
2020-02-18 02:31:42 +02:00
parent e5c78fe555
commit a37341ff00
24 changed files with 364 additions and 80 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
export default function DashboardPageContent({ children }) {
return (
<div class="dashboard__page-content">
{ children }
</div>
)
}