mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 18:32:41 +00:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
import React from 'react';
|
|
|
|
import AuthorLookup from './authorLookup/authorLookup.jsx';
|
|
|
|
const authorUtils = ()=>{
|
|
return (
|
|
<section className='authorUtils'>
|
|
<AuthorLookup />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
module.exports = authorUtils; |