Added folders and disabled login banner when the user is identificated

This commit is contained in:
2021-09-27 18:55:08 -03:00
parent 36ceb825d6
commit 65e271de30
12 changed files with 49 additions and 27 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react'
const DarkMode = () => {
return (
<div className="dark-mode">
<input type="checkbox" id="dark-mode_toogle-switch" onChange={() => {
}}/>
<label for="dark-mode_toogle-switch"></label>
</div>
)
}
export default DarkMode