mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-13 01:18:18 +08:00
17 lines
326 B
TypeScript
17 lines
326 B
TypeScript
import { tailwindRunner, expectError } from "./runner";
|
|
|
|
tailwindRunner(
|
|
"Layout - Object Position",
|
|
expectError([
|
|
"object-bottom",
|
|
"object-center",
|
|
"object-left",
|
|
"object-left-bottom",
|
|
"object-left-top",
|
|
"object-right",
|
|
"object-right-bottom",
|
|
"object-right-top",
|
|
"object-top",
|
|
])
|
|
);
|