feat: add animation to New Topic.

This commit is contained in:
Wentao Lyu 2023-04-08 00:14:15 +08:00
parent 9623fe2e9f
commit 96b004a696
7 changed files with 17 additions and 14 deletions

View file

@ -1,17 +0,0 @@
import React from 'react';
import EndpointItem from './EndpointItem';
export default function EndpointItems({ endpoints, onSelect }) {
return (
<>
{endpoints.map(endpoint => (
<EndpointItem
key={endpoint}
value={endpoint}
onSelect={onSelect}
endpoint={endpoint}
/>
))}
</>
);
}