| Server IP : 54.250.94.235 / Your IP : 216.73.216.57 Web Server : Apache System : Linux ip-172-26-8-22 6.1.0-41-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64 User : bitnami ( 1000) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/wordpress/wp-content/plugins/flexible-table-block/src/ |
Upload File : |
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
export default {
attributes: {
head: [
{
cells: [
{
content: __( 'Version', 'flexible-table-block' ),
tag: 'th',
},
{
content: __( 'Jazz Musician', 'flexible-table-block' ),
tag: 'th',
},
{
content: __( 'Release Date', 'flexible-table-block' ),
tag: 'th',
},
],
},
],
body: [
{
cells: [
{
content: '5.9',
tag: 'td',
},
{
content: 'Joséphine Baker',
tag: 'td',
},
{
content: __( 'January 25, 2022', 'flexible-table-block' ),
tag: 'td',
},
],
},
{
cells: [
{
content: '5.8',
tag: 'td',
},
{
content: 'Art Tatum',
tag: 'td',
},
{
content: __( 'July 20, 2021', 'flexible-table-block' ),
tag: 'td',
},
],
},
{
cells: [
{
content: '5.7',
tag: 'td',
},
{
content: 'Esperanza Spalding',
tag: 'td',
},
{
content: __( 'March 9, 2021', 'flexible-table-block' ),
tag: 'td',
},
],
},
],
},
};