import { css } from '@linaria/core'; import { CSRChild, cssVariableFromModule } from './csr_child'; import { astroTextColor } from './external'; // Try to change some variables white in dev mode const GLOBAL_VARS = { color_header: 'red', } as const; export default function CSRComponent() { const LOCAL_VARS = { description_font_style: 'bold', } as const; return (

Hello! This is{' '} Solid {' '} app built with{' '} Linaria {' '} powered by
Astro

This component was rendered on client.
); }