0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-23 05:07:52 +00:00
Files
homebrewery/client/admin/authorUtils/authorUtils.jsx
Víctor Losada Hernández 0d6c3c7e33 fix module.exports
2026-01-20 19:56:37 +01:00

13 lines
229 B
JavaScript

import React from 'react';
import AuthorLookup from './authorLookup/authorLookup.jsx';
const authorUtils = ()=>{
return (
<section className='authorUtils'>
<AuthorLookup />
</section>
);
};
export default authorUtils;