You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { Layout } from '@html-next/flexi-layouts';
class MyComponent extends Component {
<mobile></mobile>
<desktop></desktop>
}
export default MyComponent;
Downside of the former is we would no longer be able to do dynamic breakpoints. Names and total breakpoints would have to be preset. Downside of the latter is we might be taking on a lot of tooling support for TS/Glint/LanguageServers etc.
The text was updated successfully, but these errors were encountered:
I think we can simplify things by dong a runtime-only replacement with an option build-plugin to compile away unused variations.
Something like:
Alternatively we might be able to use the template-tag infrastructure to rewrite something like this:
Or like this
Downside of the former is we would no longer be able to do dynamic breakpoints. Names and total breakpoints would have to be preset. Downside of the latter is we might be taking on a lot of tooling support for TS/Glint/LanguageServers etc.
The text was updated successfully, but these errors were encountered: