bigbuffet-rw/app/soapbox/components/ui/form-actions/form-actions.tsx

11 lines
229 B
TypeScript
Raw Normal View History

2022-03-21 11:09:01 -07:00
import React from 'react';
/** Container element to house form actions. */
2022-03-21 11:09:01 -07:00
const FormActions: React.FC = ({ children }) => (
<div className='flex justify-end space-x-2'>
{children}
</div>
);
export default FormActions;