10 lines
138 B
TypeScript
10 lines
138 B
TypeScript
import React from 'react';
|
|
/* blueprint/import */
|
|
|
|
export default () => {
|
|
return (
|
|
<>
|
|
{/* blueprint/react */}
|
|
</>
|
|
);
|
|
};
|