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