mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
73c47fa0e0
Co-authored-by: Alf Eaton <alf.eaton@overleaf.com> GitOrigin-RevId: e22635978c16646060c80ceb8376a560bfbf6527
22 lines
418 B
JavaScript
22 lines
418 B
JavaScript
import React from 'react'
|
|
|
|
import SymbolPalette from '../js/features/symbol-palette/components/symbol-palette'
|
|
|
|
export const Interactive = args => {
|
|
return (
|
|
<div style={{ maxWidth: 600 }}>
|
|
<SymbolPalette {...args} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Symbol Palette',
|
|
component: SymbolPalette,
|
|
args: {
|
|
show: true,
|
|
},
|
|
argTypes: {
|
|
handleSelect: { action: 'handleSelect' },
|
|
},
|
|
}
|