Updated: Organised dashboard modules

This commit is contained in:
Llewellyn D'souza
2022-01-06 18:00:34 +05:30
parent ef9ecc36f9
commit dde5d85f6d
8 changed files with 48 additions and 33 deletions

View File

@@ -0,0 +1,8 @@
import React from 'react'
import styles from './topbar.module.css'
export default function TopBar() {
return (
<div className={styles.topBar}>search comes here</div>
)
}

View File

@@ -0,0 +1,5 @@
.topBar {
grid-row: 1;
padding: 24px 48px;
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.08);
}