11 lines
152 B
JavaScript
11 lines
152 B
JavaScript
import { RecipeFinder } from './components/RecipeFinder';
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
<RecipeFinder />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default App; |