Use some style values so it looks like this page is making progress
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { ExternalAction } from '../interfaces/external-action.interface';
|
||||
import ExternalActionButton from './ExternalActionButton';
|
||||
import s from './ExternalActionButtons.module.scss';
|
||||
|
||||
interface Props {
|
||||
actions: ExternalAction[];
|
||||
@@ -9,7 +10,7 @@ export default function ExternalActionButtonRow(props: Props) {
|
||||
const { actions } = props;
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div className={`${s.row}`}>
|
||||
{actions.map(action => (
|
||||
<ExternalActionButton key={action.id} action={action} />
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user