initialize the app

This commit is contained in:
ajaythapliyal
2023-02-07 23:27:21 +05:30
parent f6c97b52b1
commit 5d281ad01b
16 changed files with 1637 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}