implemented core stores

This commit is contained in:
2024-02-07 14:35:04 +01:00
parent b9b0fde520
commit 00df98233d
23 changed files with 2283 additions and 2 deletions

12
ui/tailwind.config.js Normal file
View File

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