mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-12 07:35:00 +00:00
refactor: move remaining test examples to fixture files
This commit is contained in:
parent
4de8c25a3f
commit
642c1c50fb
4 changed files with 66 additions and 68 deletions
11
tests/fixtures/languages/tsx/test.tsx
vendored
Normal file
11
tests/fixtures/languages/tsx/test.tsx
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
import React from 'react';
|
||||
|
||||
interface GreetingProps {
|
||||
name: string;
|
||||
}
|
||||
|
||||
const Greeting: React.FC<GreetingProps> = ({ name }) => {
|
||||
return <h1>Hello, {name}!</h1>;
|
||||
};
|
||||
|
||||
export default Greeting;
|
Loading…
Add table
Add a link
Reference in a new issue