// Template for custom layouts
import {DataTableConfiguration} from "./types"
export const layoutTemplate = (options: DataTableConfiguration, dom: HTMLTableElement) => `
${
options.paging && options.perPageSelect ?
`
` :
""
}
${
options.searchable ?
`
` :
""
}
${options.sortable ? `
${options.labels.sortHint}
` : ""}
${
options.paging ?
`
` :
""
}
`