mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
Full-featured pastebin application with: - Next.js frontend with TypeScript - Express backend with SQLite/PostgreSQL - Syntax highlighting for 100+ languages - Code quality validation system - Comprehensive accessibility (WCAG compliance) - Docker deployment configuration - Playwright E2E tests - Jest unit tests This provides a standalone web application that can be integrated as a capability module in the Universal Platform. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
382 B
TypeScript
10 lines
382 B
TypeScript
/**
|
|
* Component code snippets - Main re-export module
|
|
* This file maintains backward compatibility while delegating to specialized modules
|
|
*/
|
|
|
|
export { atomsCodeSnippets } from './snippets/atoms'
|
|
export { moleculesCodeSnippets } from './snippets/molecules'
|
|
export { organismsCodeSnippets } from './snippets/organisms'
|
|
export { templatesCodeSnippets } from './snippets/templates'
|