import React from "react"; /** * Secret content — plain React Component. * * The Vite plugin 'cryptoLockerPlugin' automatically encrypts * this module's source code during build/dev. In the build artifacts, * there will be only an AES-encrypted string. * * Test password (in .env): my-super-secret-password */ export default function SecretComponent() { return (
Decrypted ✓

Success from a React Component!

); }