Tailwind framework init, and tailwind-example of editTask.tsx

This commit is contained in:
Fhj0607
2026-04-21 13:22:04 +02:00
parent 5bde373514
commit 28b95b6a44
11 changed files with 991 additions and 220 deletions

13
tailwind.config.js Normal file
View File

@@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
'./constants/**/*.{js,jsx,ts,tsx}',
],
presets: [require('nativewind/preset')],
theme: {
extend: {},
},
plugins: [],
};