mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-18 00:56:30 +03:00
Merges the impeccable-detect CLI repo (pbakaus/impeccable-cli@831a6cc) into this repo. The BSL-1.1 license that motivated the split is gone; everything is now Apache 2.0. - Add bin/, src/, detection tests and fixtures from CLI repo - Merge package.json: name → "impeccable", add bin/exports/files fields - Internal refs now read from local src/ instead of node_modules/ - Update SPDX headers, NOTICE.md, CLAUDE.md, FAQ, npm README - Add prepack/postpack scripts for CLI-focused README on npm - Remove terminal license labels (no longer needed) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
383 B
TypeScript
15 lines
383 B
TypeScript
// App that imports components -- anti-patterns are in the imported files
|
|
import React from 'react';
|
|
import { Card } from './Card';
|
|
import './styles.css';
|
|
|
|
export function App() {
|
|
return (
|
|
<main className="p-8">
|
|
<h1 className="text-3xl font-bold">Dashboard</h1>
|
|
<Card title="Revenue" value="$12,345" />
|
|
<Card title="Users" value="1,234" />
|
|
</main>
|
|
);
|
|
}
|