You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
only after I wrap the block in brackets it will work as expected:
{<Ifcondition={true}><h1>IfBlock</h1></If>}
will render normally...
looking thru the docs I assumed I didn't need to wrap these blocks in brackets, am I missing something?
my project is running the latest vite with the @vitejs/plugin-react plugin, my vite.config.js looks like so:
On Wed, 10 May 2023 at 9:21 pm, catalin560 ***@***.***> wrote:
copy pasted from docs:
<If condition={true}>
<h1>IfBlock</h1>
</If>
will render in my page like so:
[image: Screenshot 2023-05-10 at 14-09-20 Ionic App]
<https://user-images.githubusercontent.com/22744333/237371591-32238e3c-a571-496b-9569-0ea337d17485.png>
only after I wrap the block in brackets it will work as expected:
{<If condition={true}>
<h1>IfBlock</h1>
</If>}
will render normally...
looking thru the docs I assumed I didn't need to wrap these blocks in
brackets, am I missing something?
my project is running the latest vite with the @vitejs/plugin-react
plugin, my vite.config.js looks like so:
import { defineConfig } from "vite";import react from ***@***.***/plugin-react";
// https://vitejs.dev/config/export default defineConfig({
plugins: [react({ babel: { plugins: ["macros", "jsx-control-statements"] } })],
server: {
hmr: false
}});
—
Reply to this email directly, view it on GitHub
<#121>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAG33SZDVBQDJHRNHQGYDF3XFN22RANCNFSM6AAAAAAX4S5R2Q>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
copy pasted from docs:
will render in my page like so:
only after I wrap the block in brackets it will work as expected:
will render normally...
looking thru the docs I assumed I didn't need to wrap these blocks in brackets, am I missing something?
my project is running the latest
vite
with the@vitejs/plugin-react
plugin, myvite.config.js
looks like so:The text was updated successfully, but these errors were encountered: