blob: aec71361310322bdb59fe6e982c14881595bf290 (
plain) (
blame)
1
2
3
4
5
6
7
|
export function ComponentInAnotherFile1() {
return <p className="another-file">Component in another file 1</p>;
}
export function MyList({ children }) {
return <div className="list">{children}</div>;
}
|