completed exercise 1.12

This commit is contained in:
Pablo Martin 2025-05-20 14:43:43 +02:00
parent c2ef1aaa7f
commit 0841e1a749
12 changed files with 2947 additions and 1 deletions

View file

@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})