Add eslint and prettier

This commit is contained in:
2023-01-25 13:31:05 +01:00
parent 2e891fc166
commit 81fbcc9281
4 changed files with 35 additions and 2 deletions

View File

@ -2,7 +2,10 @@ function Nav() {
return (
<nav className="mb-4 bg-white dark:bg-gray-900 border-gray-200 rounded">
<div className="container flex flex-wrap items-center justify-between mx-auto">
<a href="{% url 'index' %}" className="flex items-center">
<a
href="{% url 'index' %}"
className="flex items-center"
>
<span className="text-4xl"></span>
<span className="self-center text-xl font-semibold whitespace-nowrap text-white">
Timetracker
@ -63,4 +66,4 @@ function Nav() {
);
}
export default Nav
export default Nav;