mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
- Complete documentation reorganization into professional structure - Achieved 90%+ test coverage across all components - Created sophisticated WASM demo matching shadcn/ui quality - Fixed all compilation warnings and missing binary files - Optimized dependencies across all packages - Professional code standards and performance optimizations - Cross-browser compatibility with Playwright testing - New York variants implementation - Advanced signal management for Leptos 0.8.8+ - Enhanced testing infrastructure with TDD approach
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Minimal WASM Test</title>
|
|
</head>
|
|
<body>
|
|
<div id="loading">
|
|
<h1>Loading Minimal WASM Test...</h1>
|
|
<p>If you see this message, the WASM is still loading or there's an error.</p>
|
|
</div>
|
|
<script type="module">
|
|
console.log('Starting minimal WASM test...');
|
|
try {
|
|
const wasmModule = await import('./pkg/minimal_wasm_test.js');
|
|
console.log('WASM module loaded successfully');
|
|
} catch (error) {
|
|
console.error('Error loading WASM:', error);
|
|
document.getElementById('loading').innerHTML = `
|
|
<div style="padding: 20px; text-align: center; color: red;">
|
|
<h1>Error Loading WASM</h1>
|
|
<p><strong>Error:</strong> ${error.message}</p>
|
|
<p><strong>Stack:</strong> ${error.stack || 'No stack trace available'}</p>
|
|
</div>
|
|
`;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|