Sign in
voaserre@up.edu.ph
/
auto-logs-frontend
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
524281ecbbe0a125d293266b69e8c96d27bf5746
Authored by
voaserre@up.edu.ph
2021-08-02 10:04:36 +0800
1 parent
a95c918a
OJT21-53: Use tailwindcss on app
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
pages/_app.js
pages/_app.js
0 → 100644
View file @
524281e
1
+
import
'tailwindcss/tailwind.css'
2
+
3
+
function
MyApp
({
Component
,
pageProps
})
{
4
+
return
<
Component
{...
pageProps
}
/
>
5
+
}
6
+
7
+
export
default
MyApp
...
...