0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00
Files
homebrewery/client/admin/authorUtils/authorUtils.jsx
G.Ambatte 03798e945d Add UI
2025-02-05 21:35:33 +13:00

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;